tests/thread_float: Remove f string in test
This causes nightlies to fail as the HiL test runners don't have python3.6+
This commit is contained in:
parent
7d4a2503c6
commit
5a3f08e75b
@ -73,7 +73,7 @@ def testfunc(child):
|
|||||||
if (count_first_thread >= MIN_PRINTS) and (count_second_thread >= MIN_PRINTS):
|
if (count_first_thread >= MIN_PRINTS) and (count_second_thread >= MIN_PRINTS):
|
||||||
break
|
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
|
assert (count_first_thread >= MIN_PRINTS) and (count_second_thread >= MIN_PRINTS), msg
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user