1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/sys/progress_bar: remove debug print

This commit is contained in:
Mikolai Gütschow 2024-06-30 11:35:11 +02:00
parent 6b7dd90e86
commit 86b0c5bc9a
No known key found for this signature in database
GPG Key ID: 943E2F37AA659AD5

View File

@ -24,8 +24,6 @@ def testfunc(child):
progress_str += EMPTY_CHARACTER * (LENGTH - ratio)
check_str = 'Progress bar 0 |{}| {:3}%'.format(
progress_str, i)
# todo: temporary printout for debugging this flaky test
print("EXPECTS:", check_str, "LENGTH:", LENGTH, "ratio:", ratio)
child.expect_exact(check_str)
child.expect_exact("Done!")