minor bugfix in progress test

This commit is contained in:
Richard Hartmann 2014-10-27 13:40:42 +01:00
parent 511a817ea7
commit 270d486319

View file

@ -421,21 +421,22 @@ def test_progress_bar_counter_non_max():
if __name__ == "__main__":
func = [
# test_loop_basic(),
# test_loop_signals(),
# test_loop_normal_stop(),
# test_loop_need_sigterm_to_stop(),
# test_loop_need_sigkill_to_stop(),
# test_why_with_statement,
# test_progress_bar,
# test_progress_bar_with_statement,
# test_progress_bar_multi,
# test_status_counter,
# test_status_counter_multi,
# test_intermediate_prints_while_running_progess_bar,
# test_intermediate_prints_while_running_progess_bar_multi,
# test_progress_bar_counter,
test_progress_bar_counter_non_max
test_loop_basic,
test_loop_signals,
test_loop_normal_stop,
test_loop_need_sigterm_to_stop,
test_loop_need_sigkill_to_stop,
test_why_with_statement,
test_progress_bar,
test_progress_bar_with_statement,
test_progress_bar_multi,
test_status_counter,
test_status_counter_multi,
test_intermediate_prints_while_running_progess_bar,
test_intermediate_prints_while_running_progess_bar_multi,
test_progress_bar_counter,
test_progress_bar_counter_non_max,
lambda: print("END")
]
for f in func: