mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
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):
|
||||
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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user