Skip to content

Commit

Permalink
Fix output directory
Browse files Browse the repository at this point in the history
  • Loading branch information
JPercival committed May 13, 2024
1 parent b0e8efc commit b5e059c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ private void deleteDirectory(String path) {

@Test
public void testNewRefreshOperation() throws IOException {
copyResourcesToTargetDir(TARGET_OUTPUT_FOLDER_PATH, "NewRefreshIG");
copyResourcesToTargetDir(TARGET_OUTPUT_FOLDER_PATH, "target/NewRefreshIG");

Check failure on line 105 in tooling/src/test/java/org/opencds/cqf/tooling/operation/RefreshIGOperationTest.java

View workflow job for this annotation

GitHub Actions / JUnit Test Report

RefreshIGOperationTest.testNewRefreshOperation

source
Raw output
java.lang.NullPointerException: source
	at org.opencds.cqf.tooling.operation.RefreshIGOperationTest.testNewRefreshOperation(RefreshIGOperationTest.java:105)
File folder = new File(TARGET_OUTPUT_FOLDER_PATH);
assertTrue(folder.exists(), "Folder should be present");
File jsonFile = new File(folder, "ig.ini");
Expand Down

0 comments on commit b5e059c

Please sign in to comment.