From 69ccc66133be151d22a8d134a2331357c4b03a2a Mon Sep 17 00:00:00 2001 From: Vignesh Date: Sat, 23 Sep 2017 02:37:14 +0800 Subject: [PATCH] fix broken test --- tests/test_model_serializer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_model_serializer.py b/tests/test_model_serializer.py index 814901331..2fdb35b97 100644 --- a/tests/test_model_serializer.py +++ b/tests/test_model_serializer.py @@ -216,7 +216,7 @@ class TestRegularFieldMappings(TestCase): "(u'red', u'Red'), (u'blue', u'Blue'), (u'green', u'Green')" ).replace( "{'max_value': 'Ensure this value is less than or equal to %(limit_value)s.', 'min_value': 'Ensure this value is greater than or equal to %(limit_value)s.'}", - {'max_value': u'Ensure this value is less than or equal to %(limit_value)s.', 'min_value': u'Ensure this value is greater than or equal to %(limit_value)s.'} + "{'max_value': u'Ensure this value is less than or equal to %(limit_value)s.', 'min_value': u'Ensure this value is greater than or equal to %(limit_value)s.'}" ) self.assertEqual(unicode_repr(TestSerializer()), expected)