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:
parent
5a3f08e75b
commit
7c2311534c
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user