From 5a3f08e75bc853a92aae436299d70d4fa4eaafb9 Mon Sep 17 00:00:00 2001 From: MrKevinWeiss Date: Mon, 29 Nov 2021 09:28:35 +0100 Subject: [PATCH] tests/thread_float: Remove f string in test This causes nightlies to fail as the HiL test runners don't have python3.6+ --- tests/thread_float/tests/01-run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/thread_float/tests/01-run.py b/tests/thread_float/tests/01-run.py index b317483390..aaa44c0f6f 100755 --- a/tests/thread_float/tests/01-run.py +++ b/tests/thread_float/tests/01-run.py @@ -73,7 +73,7 @@ def testfunc(child): if (count_first_thread >= MIN_PRINTS) and (count_second_thread >= MIN_PRINTS): break - msg = f"Either t1 or t3 printed less than {MIN_PRINTS} times within 100 messages" + msg = "Either t1 or t3 printed less than {} times within 100 messages".format(MIN_PRINTS) assert (count_first_thread >= MIN_PRINTS) and (count_second_thread >= MIN_PRINTS), msg