Skip to content

Commit 473baed

Browse files
authored
Merge pull request #830 from mnordsletten/dev
test.py: Quick fix for failing dev branch
2 parents 2d3348b + 035dd38 commit 473baed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def main():
237237
stress = stress_test() if "stress" in test_categories else 0
238238
unit = unit_tests() if "unit" in test_categories else 0
239239
examples = examples_working() if "examples" in test_categories else 0
240-
folders = integration_tests(subfolder=args.tests[0]) if args.tests[0] in test_categories else 0
240+
folders = integration_tests(subfolder=test_categories[0]) if test_categories[0] in test_folders else 0
241241

242242
status = max(integration, stress, unit, examples, folders)
243243

0 commit comments

Comments
 (0)