Skip to content

Commit 245d382

Browse files
committed
[test] Fix typo in runner
1 parent ef9c157 commit 245d382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/core/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def _runTestFile(self, inputPath):
112112

113113
if __name__ == "__main__":
114114
if not os.path.exists(outputDir):
115-
os.makedirs(outputDir, exists_ok=True)
115+
os.makedirs(outputDir, exist_ok=True)
116116
for fileName in inputFiles:
117117
testName = 'test ' + os.path.basename(fileName)
118118
setattr(RunTests, testName, lambda self, file=fileName: self._runTestFile(file))

0 commit comments

Comments
 (0)