Skip to content

Commit

Permalink
fix test runner (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw authored Dec 26, 2022
1 parent 05bf662 commit 4624d00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/test
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class TestRunner:
if test_name == "all":
continue

method_name = f"_run_test_{test_name}"
method_name = f"_run_test_{test_name.replace('-', '_')}"
method = getattr(self, method_name)
method()

Expand Down

0 comments on commit 4624d00

Please sign in to comment.