mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-11 09:17:47 +08:00
10 lines
332 B
Python
10 lines
332 B
Python
|
from tqdm.notebook import tqdm as tqdm_notebook
|
||
|
from tests_tqdm import with_setup, pretest, posttest
|
||
|
|
||
|
|
||
|
@with_setup(pretest, posttest)
|
||
|
def test_notebook_disabled_description():
|
||
|
"""Test that set_description works for disabled tqdm_notebook"""
|
||
|
with tqdm_notebook(1, disable=True) as t:
|
||
|
t.set_description("description")
|