diff --git a/tests/test_parser_functional.py b/tests/test_parser_functional.py index f9ef1d5..60b0249 100644 --- a/tests/test_parser_functional.py +++ b/tests/test_parser_functional.py @@ -208,7 +208,7 @@ def test_regression_include_body_example_json(self): data = self.load('include-body-example-json.yaml') responses = data.resources['/me'].methods['get'].responses[200] json_response = responses.body['application/json'] - self.assertEqual(json_response.example, '{"foo": "bar"}') + self.assertEqual(json_response.example, {u'foo': u'bar'}) class ResourceParseTestCase(SampleParseTestCase):