Remove SDC query
[clamp.git] / src / test / java / org / onap / clamp / clds / it / config / CldsReferencePropertiesItCase.java
index 630e8c0..65aa9b4 100644 (file)
@@ -101,11 +101,12 @@ public class CldsReferencePropertiesItCase {
      */
     @Test
     public void testGetFileContent() throws IOException {
-        String content = refProp.getFileContent("sdc.decode.service_ids");
-        assertEquals("{}", content);
+        String location = "{\n\t\"DC1\": \"Data Center 1\",\n\t\"DC2\": \"Data Center 2\",\n\t\"DC3\": \"Data Center 3\"\n}\n";
+        String content = refProp.getFileContent("ui.location.default");
+        assertEquals(location, content);
         // Test composite key
-        content = refProp.getFileContent("sdc.decode", "service_ids");
-        assertEquals("{}", content);
+        content = refProp.getFileContent("ui.location", "default");
+        assertEquals(location, content);
     }
 
     @Test