1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/thread_pthread_barrier: 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:29:06 +01:00
parent 5a3f08e75b
commit 7c2311534c
No known key found for this signature in database
GPG Key ID: 3514539D7808D123

View File

@ -9,7 +9,7 @@ def testfunc(child):
children = int(child.match.group(1))
iterations = int(child.match.group(2))
for i in range(children):
child.expect(f'Start {i + 1}')
child.expect('Start {}'.format(i + 1))
for _ in range(iterations):
sleeps = []
for _ in range(children):