From 7c2311534cf1cbef7880795827c88e7ce075e2ae Mon Sep 17 00:00:00 2001 From: MrKevinWeiss Date: Mon, 29 Nov 2021 09:29:06 +0100 Subject: [PATCH] tests/thread_pthread_barrier: Remove f string in test This causes nightlies to fail as the HiL test runners don't have python3.6+ --- tests/pthread_barrier/tests/01-run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pthread_barrier/tests/01-run.py b/tests/pthread_barrier/tests/01-run.py index e4e974dd27..f7831b1d00 100755 --- a/tests/pthread_barrier/tests/01-run.py +++ b/tests/pthread_barrier/tests/01-run.py @@ -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):