summaryrefslogtreecommitdiff
path: root/tests/template_tests/test_parser.py
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-18 10:02:43 +0100
committerAlasdair Nicol <alasdair@memset.com>2013-10-18 10:07:39 +0100
commita800036981c6fea8eb3dac22467965c71af05d29 (patch)
treec872f8a78d26f1de133d415fef922013dafe878a /tests/template_tests/test_parser.py
parent65750b83523870851008e804364121f8c458fc2d (diff)
downloaddjango-a800036981c6fea8eb3dac22467965c71af05d29.tar.gz
Fixed #21287 -- Fixed E123 pep8 warnings
Diffstat (limited to 'tests/template_tests/test_parser.py')
-rw-r--r--tests/template_tests/test_parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/template_tests/test_parser.py b/tests/template_tests/test_parser.py
index 8deb11da89..b9468fa303 100644
--- a/tests/template_tests/test_parser.py
+++ b/tests/template_tests/test_parser.py
@@ -123,7 +123,7 @@ class ParserTests(TestCase):
'1|two_arguments',
'1|two_arguments:"1"',
'1|two_one_opt_arg',
- ):
+ ):
with self.assertRaises(TemplateSyntaxError):
FilterExpression(expr, p)
for expr in (
@@ -135,5 +135,5 @@ class ParserTests(TestCase):
'1|one_opt_argument:"1"',
# Not supplying all
'1|two_one_opt_arg:"1"',
- ):
+ ):
FilterExpression(expr, p)