summaryrefslogtreecommitdiff
path: root/tools/testing/kunit/kunit_parser.py
diff options
context:
space:
mode:
authorJinseok Kim <always.starving0@gmail.com>2026-05-02 01:27:37 +0900
committerShuah Khan <skhan@linuxfoundation.org>2026-05-04 13:12:55 -0600
commitc12222dcce91170a8031e03559c3e88916475f14 (patch)
treec2df74c06dbcfd5482b94103b5fff0745fc841a8 /tools/testing/kunit/kunit_parser.py
parent3c479279bd947aa73024f3edf6dc1d16fc2fa3fc (diff)
downloadlinux-next-c12222dcce91170a8031e03559c3e88916475f14.tar.gz
linux-next-c12222dcce91170a8031e03559c3e88916475f14.zip
kunit: Fix spelling mistakes in comments and messages
Fix two spelling mistakes in kunit tooling: Bascially -> Basically higer -> higher Link: https://lore.kernel.org/r/20260501162739.3861-1-always.starving0@gmail.com Signed-off-by: Jinseok Kim <always.starving0@gmail.com> Reviewed-by: David Gow <david@davidgow.net> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/kunit/kunit_parser.py')
-rw-r--r--tools/testing/kunit/kunit_parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/kunit/kunit_parser.py b/tools/testing/kunit/kunit_parser.py
index 1c61a0ed740d..0e1d2f4985eb 100644
--- a/tools/testing/kunit/kunit_parser.py
+++ b/tools/testing/kunit/kunit_parser.py
@@ -268,7 +268,7 @@ def check_version(version_num: int, accepted_versions: List[int],
if version_num < min(accepted_versions):
test.add_error(printer, f'{version_type} version lower than expected!')
elif version_num > max(accepted_versions):
- test.add_error(printer, f'{version_type} version higer than expected!')
+ test.add_error(printer, f'{version_type} version higher than expected!')
def parse_ktap_header(lines: LineStream, test: Test, printer: Printer) -> bool:
"""