Bump upstreams to SNAPSHOTs
[netconf.git] / restconf / restconf-nb-bierman02 / src / test / java / org / opendaylight / yang / gen / v1 / urn / ietf / params / xml / ns / yang / ietf / restconf / rev131019 / restconf / restconf / modules / ModuleBuilderTest.java
index 416fe35a0855303c94c02b8fef210ad38153f03f..a834b15cae2675afa07c2f94e35d852940d7a630 100644 (file)
@@ -12,8 +12,8 @@ import static junit.framework.TestCase.assertTrue;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
 
-import com.google.common.collect.ImmutableList;
-import java.util.List;
+import com.google.common.collect.ImmutableSet;
+import java.util.Set;
 import org.junit.Test;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Uri;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.RevisionIdentifier;
@@ -28,7 +28,7 @@ public class ModuleBuilderTest {
         final YangIdentifier yangIdentifierOne = new YangIdentifier("YangIdentifier1");
         final YangIdentifier yangIdentifierTwo = new YangIdentifier("YangIdentifier2");
         final Uri namespace = new Uri("namespace");
-        final List<YangIdentifier> yangIdentifierList = ImmutableList.of(yangIdentifierOne, yangIdentifierTwo);
+        final Set<YangIdentifier> yangIdentifierList = ImmutableSet.of(yangIdentifierOne, yangIdentifierTwo);
         final ModuleKey moduleKeyOne = new ModuleKey(yangIdentifierOne, revision);
         final ModuleKey moduleKeyTwo = new ModuleKey(moduleKeyOne);
         moduleBuilder.setRevision(revision);