Skip to content

Commit

Permalink
[fli-iam#1864] Correct failing TU
Browse files Browse the repository at this point in the history
  • Loading branch information
youennmerel committed Nov 23, 2023
1 parent 47052fb commit b0b5e5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void testExportAsBids() throws IOException, InterruptedException {
File studyFile = new File(tempFolderPath + "stud-" + exam.getStudyId() + "_" + studyName);
assertTrue(studyFile.exists());

File subjectFile = new File(studyFile.getAbsolutePath() + "/sub-1-" + subject.getName());
File subjectFile = new File(studyFile.getAbsolutePath() + "/sub-1" + subject.getName());
assertTrue(subjectFile.exists());

File examFile = new File(subjectFile.getAbsolutePath() + "/ses-" + exam.getId());
Expand Down

0 comments on commit b0b5e5e

Please sign in to comment.