Fixed BGPCEP tests
[bgpcep.git] / integration-tests / src / test / java / org / opendaylight / protocol / integration / BgpParserImplBundleTest.java
index 17019fa4241ecafd97cdbcad66473f143ffc3dc5..28558247bf7e1dd02fd63192d652c713eb441238 100644 (file)
@@ -7,18 +7,18 @@
  */
 package org.opendaylight.protocol.integration;
 
-import java.util.Collection;
-
 import com.google.common.collect.Lists;
 
+import java.util.Collection;
+
 public final class BgpParserImplBundleTest extends AbstractBundleTest {
-       @Override
-       protected Collection<String> prerequisiteBundles() {
-               return Lists.newArrayList("bgp-concepts", "bgp-linkstate", "bgp-parser-api", "bgp-parser-spi", "bgp-util", "concepts", "framework", "util");
-       }
+    @Override
+    protected Collection<String> prerequisiteBundles() {
+        return Lists.newArrayList("bgp-concepts", "bgp-parser-api", "bgp-parser-spi", "bgp-util", "concepts", "rsvp-api", "util");
+    }
 
-       @Override
-       protected Collection<String> requiredBundles() {
-               return Lists.newArrayList("bgp-parser-impl");
-       }
+    @Override
+    protected Collection<String> requiredBundles() {
+        return Lists.newArrayList("bgp-parser-impl");
+    }
 }