kunit: fix missing f in f-string in run_checks.py
authorDaniel Latypov <dlatypov@google.com>
Thu, 27 Jan 2022 22:17:10 +0000 (14:17 -0800)
committerShuah Khan <skhan@linuxfoundation.org>
Wed, 2 Feb 2022 18:12:15 +0000 (11:12 -0700)
commitde4d73b16d5d9c3e5d03a66046e5410e1e74f903
tree4937e2b8129498cc8d91f71b80df2501b4a19455
parent235528072f28b3b0a1446279b7eaddda36dbf743
kunit: fix missing f in f-string in run_checks.py

We're missing the `f` prefix to have python do string interpolation, so
we'd never end up printing what the actual "unexpected" error is.

Fixes: ee92ed38364e ("kunit: add run_checks.py script to validate kunit changes")
Signed-off-by: Daniel Latypov <dlatypov@google.com>
Reviewed-by: David Gow <davidgow@google.com>
Reviewed-by: Brendan Higgins <brendanhiggins@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/kunit/run_checks.py