We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22f7f9e commit a9e08b7Copy full SHA for a9e08b7
tests/performance/fibonacci/test_fibonacci.py
@@ -26,5 +26,5 @@ def test_fibonacci(dut):
26
27
# Match "Average time: %lu.%03lu s"
28
res = dut.expect(r"Average time: (\d+)\.(\d+) s", timeout=90*runs)
29
- avg_time = float(res.group(0).decode("utf-8").split(" ")[1])
+ avg_time = float(res.group(0).decode("utf-8").split(" ")[2])
30
LOGGER.info("Average time on {} runs: {} s".format(runs, avg_time))
0 commit comments