Enhancements for the aai-common library
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / rest / RestHandlerTest.java
index cba81d7..494d7e4 100644 (file)
@@ -35,7 +35,7 @@ public class RestHandlerTest {
         RestHandlerService secondInstance = RestHandlerService.getInstance();
         assertNotNull(firstInstance);
         assertNotNull(secondInstance);
-        assertTrue(firstInstance == secondInstance);
+        assertSame(firstInstance, secondInstance);
 
     }
 }