Create SVG in UI
[clamp.git] / src / test / java / org / onap / clamp / loop / LoopControllerTestItCase.java
index 26db6b0..f170bc6 100644 (file)
@@ -86,7 +86,7 @@ public class LoopControllerTestItCase {
     }
 
     private Loop createTestLoop(String loopName, String loopBlueprint, String loopSvg) {
-        return new Loop(loopName, loopSvg);
+        return new Loop(loopName);
     }
 
     @Test
@@ -148,14 +148,6 @@ public class LoopControllerTestItCase {
         assertThat(microServicePolicyService.isExisting("policyName")).isTrue();
     }
 
-    @Test
-    @Transactional
-    public void testGetSvgRepresentation() {
-        saveTestLoopToDb();
-        String svgRepresentation = loopController.getSvgRepresentation(EXAMPLE_LOOP_NAME);
-        assertThat(svgRepresentation).isEqualTo("representation");
-    }
-
     @Test
     @Transactional
     public void testAddAndRemoveOperationalPolicies() throws IOException {