summaryrefslogtreecommitdiff
path: root/tests/test_ansi.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ansi.py')
-rw-r--r--tests/test_ansi.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/tests/test_ansi.py b/tests/test_ansi.py
index b32bdddf..bf628ef0 100644
--- a/tests/test_ansi.py
+++ b/tests/test_ansi.py
@@ -71,11 +71,7 @@ def test_style_color_not_exist():
ansi.style(base_str, fg='blue', bg='fake')
-def test_fg_lookup_dict():
- assert ansi.fg_lookup('gray') == Fore.LIGHTBLACK_EX
-
-
-def test_fg_lookup_colorama():
+def test_fg_lookup_exist():
assert ansi.fg_lookup('green') == Fore.GREEN
@@ -84,11 +80,7 @@ def test_fg_lookup_nonexist():
ansi.fg_lookup('foo')
-def test_bg_lookup_dict():
- assert ansi.bg_lookup('gray') == Back.LIGHTBLACK_EX
-
-
-def test_bg_lookup_colorama():
+def test_bg_lookup_exist():
assert ansi.bg_lookup('green') == Back.GREEN