From 8274b660c68686ce5a912b0ccaedf1a07ed31ef4 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sun, 2 Oct 2016 12:08:02 -1000 Subject: [PATCH] fix flake8 failure --- tests/unit/test_serialize.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/test_serialize.py b/tests/unit/test_serialize.py index 60bf6da..6555cca 100644 --- a/tests/unit/test_serialize.py +++ b/tests/unit/test_serialize.py @@ -132,6 +132,7 @@ def test_serialize_binary_request(): except (UnicodeDecodeError, TypeError) as exc: assert msg in str(exc) + def test_deserialize_no_body_string(): data = {'body': {'string': None}} output = compat.convert_to_bytes(data)