Skip to content

Commit

Permalink
[test] Fix typo in runner
Browse files Browse the repository at this point in the history
  • Loading branch information
rossberg committed Sep 25, 2023
1 parent ea7237b commit 105567f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/core/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def _runTestFile(self, inputPath):

if __name__ == "__main__":
if not os.path.exists(outputDir):
os.makedirs(outputDir, exists_ok=True)
os.makedirs(outputDir, exist_ok=True)
for fileName in inputFiles:
testName = 'test ' + os.path.basename(fileName)
setattr(RunTests, testName, lambda self, file=fileName: self._runTestFile(file))
Expand Down

0 comments on commit 105567f

Please sign in to comment.