Skip to content

Commit a9e08b7

Browse files
committed
Fix
1 parent 22f7f9e commit a9e08b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/performance/fibonacci/test_fibonacci.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ def test_fibonacci(dut):
2626

2727
# Match "Average time: %lu.%03lu s"
2828
res = dut.expect(r"Average time: (\d+)\.(\d+) s", timeout=90*runs)
29-
avg_time = float(res.group(0).decode("utf-8").split(" ")[1])
29+
avg_time = float(res.group(0).decode("utf-8").split(" ")[2])
3030
LOGGER.info("Average time on {} runs: {} s".format(runs, avg_time))

0 commit comments

Comments
 (0)