[test/helper] Fix style
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Fri, 2 Oct 2015 11:42:11 +0000 (13:42 +0200)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Fri, 2 Oct 2015 11:42:11 +0000 (13:42 +0200)
Use the correct indentation to please flake8

test/helper.py

index 28fd135b2b50d4c40a3e68acc7dfc2a2898f0ee8..bdd7acca4d91c490f29c21aeac7cc9ba01c86952 100644 (file)
@@ -136,7 +136,7 @@ def expect_value(self, got, expected, field):
             self.assertEqual(
                 type_expected, type_got,
                 'Type mismatch for list item at index %d for field %s, expected %r, got %r' % (
-                index, field, type_expected, type_got))
+                    index, field, type_expected, type_got))
             expect_value(self, item_got, item_expected, field)
     else:
         if isinstance(expected, compat_str) and expected.startswith('md5:'):