Skip to content

Commit f33d508

Browse files
authored
Update CheckTestResults.m
1 parent e32c0bc commit f33d508

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SoftwareTests/CheckTestResults.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
function Version = GetResults(Project)
1818
RootFolder = currentProject().RootFolder;
19-
Version = dir(fullfile(RootFolder,"SoftwareTests","TestResults*.txt"));
19+
Version = dir(fullfile(RootFolder,"public","TestResults*.txt"));
2020
Version = extractBetween([Version.name],"TestResults_",".txt");
2121
end
2222

@@ -37,11 +37,11 @@ function SetUpSmokeTest(testCase,Project)
3737
methods(Test)
3838

3939
function CheckResults(testCase,Version)
40-
File = fullfile("SoftwareTests","TestResults_"+Version+".txt");
40+
File = fullfile("public","TestResults_"+Version+".txt");
4141
Results = readtable(File,TextType="string");
4242
testCase.verifyTrue(all(Results.Passed));
4343
end
4444

4545
end
4646

47-
end
47+
end

0 commit comments

Comments
 (0)