summaryrefslogtreecommitdiffhomepage
path: root/libs/tqdm/tests/tests_notebook.py
diff options
context:
space:
mode:
Diffstat (limited to 'libs/tqdm/tests/tests_notebook.py')
-rw-r--r--libs/tqdm/tests/tests_notebook.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/libs/tqdm/tests/tests_notebook.py b/libs/tqdm/tests/tests_notebook.py
deleted file mode 100644
index 3af992f0c..000000000
--- a/libs/tqdm/tests/tests_notebook.py
+++ /dev/null
@@ -1,9 +0,0 @@
-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")