1
0
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:
MrKevinWeiss 2021-11-29 09:28:35 +01:00
parent 7d4a2503c6
commit 5a3f08e75b
No known key found for this signature in database
GPG Key ID: 3514539D7808D123

View File

@ -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