Update tests/test_utils_tqdm_mod.py
Run CI Tests / test (push) Successful in 40s

This commit is contained in:
2025-07-30 15:23:17 +02:00
parent 2d73e350fe
commit d13933c278
+1 -1
View File
@@ -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)