aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2022-08-24 20:13:09 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2022-08-24 20:58:55 +0300
commit89a44b42f3334dae95eb80687846e1bdc4470f77 (patch)
tree133765c853da226167b540841a6a1d630f7ff390 /tests
parentremove mentions of _readdir C extension (diff)
downloadsnakeoil-89a44b42f3334dae95eb80687846e1bdc4470f77.tar.gz
snakeoil-89a44b42f3334dae95eb80687846e1bdc4470f77.tar.bz2
snakeoil-89a44b42f3334dae95eb80687846e1bdc4470f77.zip
remove mk_cpy_loadable_testcase
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/test_formatters.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/test_formatters.py b/tests/test_formatters.py
index 5b73a3b..266ef1e 100644
--- a/tests/test_formatters.py
+++ b/tests/test_formatters.py
@@ -6,7 +6,7 @@ from tempfile import TemporaryFile
import pytest
from snakeoil import formatters
-from snakeoil.test import mk_cpy_loadable_testcase, protect_process
+from snakeoil.test import protect_process
# protect against python issue 7567 for the curses module.
issue7567 = protect_process
@@ -250,8 +250,3 @@ class TestGetFormatter:
stream = BytesIO()
formatter = _with_term('xterm', formatters.get_formatter, stream)
assert isinstance(formatter, formatters.PlainTextFormatter)
-
-
-cpy_loaded_Test = mk_cpy_loadable_testcase(
- "snakeoil._formatters", "snakeoil.formatters", "StreamClosed",
- "StreamClosed")