diff --git a/src/test/java/com/threerings/io/StreamableTest.java b/src/test/java/com/threerings/io/StreamableTest.java index ae3d90af0..b0073108a 100644 --- a/src/test/java/com/threerings/io/StreamableTest.java +++ b/src/test/java/com/threerings/io/StreamableTest.java @@ -39,6 +39,7 @@ import static org.junit.Assert.*; import com.google.common.base.Objects; import com.google.common.collect.ImmutableMap; +import com.google.common.collect.ImmutableSet; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import com.google.common.collect.Sets; @@ -143,9 +144,9 @@ public class StreamableTest public Collection collection = Arrays.asList(4, 5, 6); public Collection nullCollection = null; - public Set set = Sets.newHashSet(6, 7, 8); + public Set set = Sets.newHashSet(ImmutableSet.of(6, 7, 8)); public Set nullSet = null; - public HashSet hashSet = Sets.newHashSet(7, 8, 9); + public HashSet hashSet = Sets.newHashSet(ImmutableSet.of(7, 8, 9)); public HashSet nullHashSet = null; public Map map = ImmutableMap.of(1, "one", 2, "two", 3, "three");