summaryrefslogtreecommitdiff
path: root/tests/run-tests.py
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2025-02-25 10:43:01 +0100
committerDamien George <damien@micropython.org>2025-02-25 23:34:53 +1100
commit8ce7a58be21eb77532b109594abcc4e47aa8d887 (patch)
tree8c56438d448cf51d0940db3385b5860f63e9d04f /tests/run-tests.py
parentdc2fcfcc5511a371ff684f7d7772e7a7b479246d (diff)
tests: Four typos in tests directory.
Found by codespell. Signed-off-by: Christian Clauss <cclauss@me.com>
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-xtests/run-tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index b108b1639..1af3dfc29 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -848,7 +848,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1):
test_file_abspath = os.path.abspath(test_file).replace("\\", "/")
if args.filters:
- # Default verdict is the opposit of the first action
+ # Default verdict is the opposite of the first action
verdict = "include" if args.filters[0][0] == "exclude" else "exclude"
for action, pat in args.filters:
if pat.search(test_file):