We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71de481 commit a352281Copy full SHA for a352281
snap-common/src/test/java/org/snapscript/common/CompoundIteratorTest.java
@@ -3,6 +3,7 @@
3
import java.util.ArrayList;
4
import java.util.HashSet;
5
import java.util.Iterator;
6
+import java.util.LinkedHashSet;
7
import java.util.List;
8
import java.util.Set;
9
@@ -11,7 +12,7 @@
11
12
public class CompoundIteratorTest extends TestCase {
13
14
public void testIterator() {
- Set<String> one = new HashSet<String>();
15
+ Set<String> one = new LinkedHashSet<String>();
16
List<String> two = new ArrayList<String>();
17
List<String> three = new ArrayList<String>();
18
0 commit comments