Fixed #21268 -- Fixed E303 pep8 warnings

This commit is contained in:
Alasdair Nicol 2013-10-18 00:58:02 +01:00
parent 65d1d65d52
commit bab9123daa
53 changed files with 2 additions and 87 deletions

View file

@ -82,7 +82,6 @@ class DefaultFiltersTests(TestCase):
finally:
decimal_ctx.prec = old_prec
def test_floatformat_py2_fail(self):
self.assertEqual(floatformat(1.00000000000000015, 16), '1.0000000000000002')
@ -92,7 +91,6 @@ class DefaultFiltersTests(TestCase):
if six.PY2:
test_floatformat_py2_fail = unittest.expectedFailure(test_floatformat_py2_fail)
def test_addslashes(self):
self.assertEqual(addslashes('"double quotes" and \'single quotes\''),
'\\"double quotes\\" and \\\'single quotes\\\'')