Changes test port to 18080 to avoid clashes with 8080 usage

Change-Id: I3697f3315863927e765e9c37c86c1680ef2d2911
diff --git a/protocols/rest/ctl/src/test/java/org/onosproject/protocol/rest/ctl/RestSBControllerImplTest.java b/protocols/rest/ctl/src/test/java/org/onosproject/protocol/rest/ctl/RestSBControllerImplTest.java
index fa9f952..a10330f 100644
--- a/protocols/rest/ctl/src/test/java/org/onosproject/protocol/rest/ctl/RestSBControllerImplTest.java
+++ b/protocols/rest/ctl/src/test/java/org/onosproject/protocol/rest/ctl/RestSBControllerImplTest.java
@@ -153,7 +153,7 @@
 
     @Override
     protected Application configure() {
-        set(TestProperties.CONTAINER_PORT, 8080);
+        set(TestProperties.CONTAINER_PORT, 18080);
         return new ResourceConfig(HelloResource.class);
     }
 
@@ -162,8 +162,8 @@
         controller = new RestSBControllerImpl();
         TestUtils.setField(controller, "eventDispatcher", new TestEventDispatcher());
         controller.activate();
-        device1 = new DefaultRestSBDevice(IpAddress.valueOf("127.0.0.1"), 8080, "foo", "bar", "http", null, true);
-        device2 = new DefaultRestSBDevice(IpAddress.valueOf("127.0.0.2"), 8080, "foo1", "bar2", "http", null, true);
+        device1 = new DefaultRestSBDevice(IpAddress.valueOf("127.0.0.1"), 18080, "foo", "bar", "http", null, true);
+        device2 = new DefaultRestSBDevice(IpAddress.valueOf("127.0.0.2"), 18080, "foo1", "bar2", "http", null, true);
         controller.addDevice(device1);
 
     }