From dccb93bbfe72a50c8abf38b3925b5ee61e0c2839 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Artur=20Maci=C4=85g?= Date: Sun, 24 Feb 2019 02:28:45 +0000 Subject: [PATCH] test validaotr escape sequence fix --- tests/integration/test_validators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_validators.py b/tests/integration/test_validators.py index 43c185a..6b43ba8 100644 --- a/tests/integration/test_validators.py +++ b/tests/integration/test_validators.py @@ -282,7 +282,7 @@ class TestResponseValidator(object): def test_invalid_media_type_value(self, validator): request = MockRequest(self.host_url, 'get', '/v1/pets') - response = MockResponse('\{\}') + response = MockResponse("{}") result = validator.validate(request, response)