fix port override test class name
diff --git a/console/server/src/test/java/org/apache/edgent/test/console/server/HttpServerTestPort.java b/console/server/src/test/java/org/apache/edgent/test/console/server/HttpServerPortTest.java
similarity index 94%
rename from console/server/src/test/java/org/apache/edgent/test/console/server/HttpServerTestPort.java
rename to console/server/src/test/java/org/apache/edgent/test/console/server/HttpServerPortTest.java
index 95778bc..64e8b22 100644
--- a/console/server/src/test/java/org/apache/edgent/test/console/server/HttpServerTestPort.java
+++ b/console/server/src/test/java/org/apache/edgent/test/console/server/HttpServerPortTest.java
@@ -31,7 +31,7 @@
  * This is a separate test because the HttpServer implementation
  * precludes changing the console port within a jvm instance.
  */
-public class HttpServerTestPort {
+public class HttpServerPortTest {
 	
 	  int getAvailablePort() throws IOException {
 	    try (Socket s = new Socket()) {
@@ -41,7 +41,7 @@
 	  }
 
     @Test
-    public void overridePortNumber() throws Exception {
+    public void testOverridePortNumber() throws Exception {
       // count on the OS not immediately reusing an available local port.
     	int port = getAvailablePort();
       int port2 = getAvailablePort();