diff options
Diffstat (limited to 'cps-ri/src')
-rw-r--r-- | cps-ri/src/test/java/org/onap/cps/TestApplication.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cps-ri/src/test/java/org/onap/cps/TestApplication.java b/cps-ri/src/test/java/org/onap/cps/TestApplication.java index 5e0e3679ee..0d1df456ee 100644 --- a/cps-ri/src/test/java/org/onap/cps/TestApplication.java +++ b/cps-ri/src/test/java/org/onap/cps/TestApplication.java @@ -1,6 +1,7 @@ /* * ============LICENSE_START======================================================= * Copyright (C) 2020 Pantheon.tech + * Modifications Copyright (C) 2021 Bell Canada. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -25,6 +26,6 @@ import org.springframework.boot.autoconfigure.SpringBootApplication; * The @SpringBootApplication annotated class is required in order to run tests * marked with @SpringBootTest annotation. */ -@SpringBootApplication +@SpringBootApplication(scanBasePackages = "org.onap.cps.spi") public class TestApplication { } |