Skip to content

Commit

Permalink
Minor fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeust committed Jun 22, 2010
1 parent ff94a1b commit 38d16ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/src/test/asserttests/AssertTest.java
@@ -1,12 +1,12 @@
package test.asserttests;

import java.util.HashSet;
import java.util.Set;
import java.util.TreeSet;

import org.testng.Assert;
import org.testng.annotations.Test;

import com.google.inject.internal.Sets;

public class AssertTest {

@Test
Expand Down Expand Up @@ -59,8 +59,8 @@ public void arraysFailures_3() {

@Test
public void setsSuccess() {
Set<Integer> set1 = new HashSet<Integer>();
Set<Integer> set2 = new TreeSet<Integer>();
Set<Integer> set1 = Sets.newHashSet();
Set<Integer> set2 = Sets.newHashSet();

set1.add(1);
set2.add(1);
Expand Down

0 comments on commit 38d16ad

Please sign in to comment.