From 9b8b2130efcf2a8b0e5dbe4302f56cee0db5cf3c Mon Sep 17 00:00:00 2001 From: Nathan Isom Date: Fri, 16 Oct 2015 10:59:02 -0500 Subject: [PATCH] remove deprecated test. --- tests/unit/config/test_style.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/unit/config/test_style.py b/tests/unit/config/test_style.py index 8fe443c13..673bc0134 100644 --- a/tests/unit/config/test_style.py +++ b/tests/unit/config/test_style.py @@ -82,14 +82,10 @@ class TestColorDict: @pytest.mark.parametrize('key, expected', [ ('foo', 'one'), - ('foo.fg', 'color: two;'), - ('foo.bg', 'background-color: three;'), ]) def test_values(self, key, expected): d = style.ColorDict() d['foo'] = 'one' - d['foo.fg'] = 'two' - d['foo.bg'] = 'three' assert d[key] == expected def test_key_error(self, caplog):