We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7359376 commit 9cd7b49Copy full SHA for 9cd7b49
test/test_util.py
@@ -245,7 +245,9 @@ def test_adjust_timing_fd(self):
245
new_timing = check_or_adjust_timing_clock(
246
timing, valid_clocks=[8_000, 80_000_000]
247
)
248
- assert len(record) == 1
+ assert len(record) == 1, "; ".join(
249
+ [record[i].message.args[0] for i in range(len(record))]
250
+ ) # print all warnings, if more than one warning is present
251
assert (
252
record[0].message.args[0]
253
== "Adjusted f_clock in BitTimingFd from 160000000 to 80000000"
0 commit comments