diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-10-02 13:42:11 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-10-02 13:42:11 +0200 |
commit | 7d0ada5ff907824c66c466ee9b83008210250d5f (patch) | |
tree | 1e6c332ac9b90b8ec2d7fea29bbc5d1cdace9563 /test/helper.py | |
parent | 44451f22d5d1a5bed5f5851b27a963860813ecd6 (diff) |
[test/helper] Fix style
Use the correct indentation to please flake8
Diffstat (limited to 'test/helper.py')
-rw-r--r-- | test/helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helper.py b/test/helper.py index 28fd135b2..bdd7acca4 100644 --- a/test/helper.py +++ b/test/helper.py @@ -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:'): |