diff options
author | Frantisek Sumsal <fsumsal@redhat.com> | 2023-06-15 20:37:55 +0200 |
---|---|---|
committer | Frantisek Sumsal <fsumsal@redhat.com> | 2023-06-15 20:52:45 +0200 |
commit | 9a27ef092e7403d8b371025c9c0348895d3cf76e (patch) | |
tree | 90832a693922179d8fab7d84a3c171c88fd4144b /test/run-unit-tests.py | |
parent | Update badge on README to refer new scorecard viewer (#28050) (diff) | |
download | systemd-9a27ef092e7403d8b371025c9c0348895d3cf76e.tar.xz systemd-9a27ef092e7403d8b371025c9c0348895d3cf76e.zip |
tree-wide: fix a couple of typos
As reported by Fossies.org.
Diffstat (limited to 'test/run-unit-tests.py')
-rwxr-xr-x | test/run-unit-tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run-unit-tests.py b/test/run-unit-tests.py index 7bb904ddd1..e6f26c2821 100755 --- a/test/run-unit-tests.py +++ b/test/run-unit-tests.py @@ -53,7 +53,7 @@ for test in tests: print(f'{YELLOW}SKIP: {name}{RESET_ALL}') total.skip += 1 elif ex.returncode == 127: - print(f'{YELLOW}SKIP: {name} (no interpeter) {RESET_ALL}') + print(f'{YELLOW}SKIP: {name} (no interpreter) {RESET_ALL}') total.skip += 1 else: print(f'{RED}FAIL: {name}{RESET_ALL}') |