From 86b0c5bc9a3c7897b3dbb030ef707d957d5e414b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikolai=20G=C3=BCtschow?= Date: Sun, 30 Jun 2024 11:35:11 +0200 Subject: [PATCH] tests/sys/progress_bar: remove debug print --- tests/sys/progress_bar/tests/01-run.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/sys/progress_bar/tests/01-run.py b/tests/sys/progress_bar/tests/01-run.py index e9c1a8192b..3688427b06 100755 --- a/tests/sys/progress_bar/tests/01-run.py +++ b/tests/sys/progress_bar/tests/01-run.py @@ -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!")