summaryrefslogtreecommitdiffstats
path: root/csarvalidation/src/test
diff options
context:
space:
mode:
authorGao Weitao <victor.gao@huawei.com>2019-03-18 06:06:56 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-18 06:06:56 +0000
commitcb83eef8ba8f479576a07d08cf9b5c48b737778c (patch)
treef6e9ab3c8d92bb2a559b058260a366d6deff2087 /csarvalidation/src/test
parentd8f859223948dcad8022ff72b794854305d493c8 (diff)
parent022ea3db9854c9dadd9ac986dcba06ae9be8fd63 (diff)
Merge changes I4ddadfa3,I8fc71d45,I1d9f8d29
* changes: Update readme with SOL001 Add SOL001 test case place holder Fix the csarvalidation build failure on windows
Diffstat (limited to 'csarvalidation/src/test')
-rw-r--r--csarvalidation/src/test/java/org/onap/cvc/csar/PnfManifestParserTest.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/csarvalidation/src/test/java/org/onap/cvc/csar/PnfManifestParserTest.java b/csarvalidation/src/test/java/org/onap/cvc/csar/PnfManifestParserTest.java
index a925674..96a66c3 100644
--- a/csarvalidation/src/test/java/org/onap/cvc/csar/PnfManifestParserTest.java
+++ b/csarvalidation/src/test/java/org/onap/cvc/csar/PnfManifestParserTest.java
@@ -34,9 +34,7 @@ public class PnfManifestParserTest {
@Before
public void setUp() throws URISyntaxException, IOException {
- String fileName = PnfManifestParserTest.class.getClassLoader().getResource("pnf/MainServiceTemplate.mf")
- .toURI().getPath();
- pnfManifestParser = PnfManifestParser.getInstance(fileName);
+ pnfManifestParser = PnfManifestParser.getInstance("./src/test/resources/pnf/MainServiceTemplate.mf");
}
@Test