From d13933c278ab806ea8a43184036771ba49c0ee9c Mon Sep 17 00:00:00 2001 From: tligui_y Date: Wed, 30 Jul 2025 15:23:17 +0200 Subject: [PATCH] Update tests/test_utils_tqdm_mod.py --- tests/test_utils_tqdm_mod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils_tqdm_mod.py b/tests/test_utils_tqdm_mod.py index 35f943664..1c7034778 100644 --- a/tests/test_utils_tqdm_mod.py +++ b/tests/test_utils_tqdm_mod.py @@ -43,7 +43,7 @@ def test_complete_progress_bar(): def test_set_progress_multiple_points(): f = io.StringIO() with redirect_stdout(f): - bar = tqdm_mod(total=5, desc="SetBar", file=f) + bar = tqdm_mod(total=5, desc="SetBar", file=f, miniters=1, mininterval=0) bar.set(1.0) bar.set(2.0) bar.set(3.5)