From 8563ce58d75aa56134395144d509440629a17782 Mon Sep 17 00:00:00 2001 From: "Determe, Sebastien (sd378r)" Date: Fri, 17 Nov 2017 12:14:26 +0100 Subject: Fix missing scope Fix the missing scope and bad one in the test Change-Id: I2545926055cf4f4460cb627575d5b90b15f9317c Issue-ID: CLAMP-74 Signed-off-by: Determe, Sebastien (sd378r) --- src/test/java/org/onap/clamp/clds/it/CldsServiceItCase.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/test/java/org') diff --git a/src/test/java/org/onap/clamp/clds/it/CldsServiceItCase.java b/src/test/java/org/onap/clamp/clds/it/CldsServiceItCase.java index 0193613a6..0f65ef0cb 100644 --- a/src/test/java/org/onap/clamp/clds/it/CldsServiceItCase.java +++ b/src/test/java/org/onap/clamp/clds/it/CldsServiceItCase.java @@ -62,13 +62,14 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT) @TestPropertySource(locations = "classpath:application-no-camunda.properties") public class CldsServiceItCase extends AbstractItCase { + @Autowired - CldsService cldsService; + private CldsService cldsService; private String bpmnText; private String imageText; private String bpmnPropText; @Autowired - public CldsDao cldsDao; + private CldsDao cldsDao; /** * Setup the variable before the tests execution. -- cgit 1.2.3-korg