diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_parse.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_parse.py b/tests/test_parse.py index f9d445f..1a2913a 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -36,9 +36,8 @@ class TestParse(object): vs = ViewState(raw=b'\xff\x01\x10\x67\x68\x67') assert vs.decode() == (True, False, True) - @pytest.mark.skip(reason='Color parsing is not yet supported') def test_color(self): - vs = ViewState(raw=b'\xff\x01\n\x91\x01') + vs = ViewState(raw=b'\xff\x01\n\x91') assert vs.decode() == 'Color: Salmon' def test_rgba(self): |
