summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2015-09-21 08:48:44 -0400
committerVal Neekman <val@neekware.com>2015-09-21 08:48:44 -0400
commit0b97a480a5b636d2b62501f6b638edfd359a2970 (patch)
tree1abbb2d722cc2f0442ca11dd66b982eae7f7c701
parenta6ee0e3f4b13e4eaa5800550bd8abb545b9f35f7 (diff)
downloadpython-slugify-0b97a480a5b636d2b62501f6b638edfd359a2970.tar.gz
fixed test indentation error -- pep8
-rw-r--r--test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.py b/test.py
index dbc8194..7f039a2 100644
--- a/test.py
+++ b/test.py
@@ -156,7 +156,7 @@ class TestSlugification(unittest.TestCase):
r = slugify(txt)
self.assertEqual(r, '404')
- def test_numbers_and_symbols(self):
+ def test_numbers_and_symbols(self):
txt = '1,000 reasons you are #1'
r = slugify(txt)
self.assertEqual(r, '1000-reasons-you-are-1')