mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +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))
|
children = int(child.match.group(1))
|
||||||
iterations = int(child.match.group(2))
|
iterations = int(child.match.group(2))
|
||||||
for i in range(children):
|
for i in range(children):
|
||||||
child.expect(f'Start {i + 1}')
|
child.expect('Start {}'.format(i + 1))
|
||||||
for _ in range(iterations):
|
for _ in range(iterations):
|
||||||
sleeps = []
|
sleeps = []
|
||||||
for _ in range(children):
|
for _ in range(children):
|
||||||
|
Loading…
Reference in New Issue
Block a user