[test/helper] Spelling
authorSergey M․ <dstftw@gmail.com>
Wed, 30 Sep 2015 14:26:42 +0000 (20:26 +0600)
committerSergey M․ <dstftw@gmail.com>
Wed, 30 Sep 2015 14:33:51 +0000 (20:33 +0600)
test/helper.py

index 288ed237d74080be5688f8d9ee1ba4c59aadb62d..0ce9a0fb3ce5edbee2fc290ef1fac46d7687afc6 100644 (file)
@@ -134,7 +134,7 @@ def expect_value(self, got, expected, field):
             type_expected = type(item_expected)
             self.assertEqual(
                 type_expected, type_got,
-                'Type doesn\'t match at element %d of the list in field %s, expect %s, got %s' % (
+                'Type mismatch for list item at index %d for field %s, expected %r, got %r' % (
                 index, field, type_expected, type_got))
             expect_value(self, item_got, item_expected, field)
     else:
@@ -152,7 +152,7 @@ def expect_value(self, got, expected, field):
             return
         self.assertEqual(
             expected, got,
-            'invalid value for field %s, expected %r, got %r' % (field, expected, got))
+            'Invalid value for field %s, expected %r, got %r' % (field, expected, got))
 
 
 def expect_dict(self, got_dict, expected_dict):