Skip to content

Commit

Permalink
Fix failing path
Browse files Browse the repository at this point in the history
  • Loading branch information
sharon2719 authored and Wambere committed Sep 20, 2024
1 parent 923f2aa commit b5bb97b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ void validateStructureMapForProject(
FctUtils.printInfo("Found structure map: " + structureMapName);

// Define paths for Questionnaire and StructureMap
String questionnairePath = projectPath + "/questionnaire/" + questionnaireTitle + ".json";
String structureMapPath = projectPath + "/structure_map/" + structureMapName + ".json";
String questionnairePath = projectPath + "questionnaire/" + questionnaireTitle + ".json";
String structureMapPath = projectPath + "structure_map/" + structureMapName + ".json";

// Step 3: Validate StructureMap using the existing validateStructureMap function
validateStructureMap(questionnairePath, validate, structureMapPath);
Expand Down

0 comments on commit b5bb97b

Please sign in to comment.