diff options
| author | Val Neekman <val@neekware.com> | 2015-09-21 08:48:44 -0400 |
|---|---|---|
| committer | Val Neekman <val@neekware.com> | 2015-09-21 08:48:44 -0400 |
| commit | 0b97a480a5b636d2b62501f6b638edfd359a2970 (patch) | |
| tree | 1abbb2d722cc2f0442ca11dd66b982eae7f7c701 | |
| parent | a6ee0e3f4b13e4eaa5800550bd8abb545b9f35f7 (diff) | |
| download | python-slugify-0b97a480a5b636d2b62501f6b638edfd359a2970.tar.gz | |
fixed test indentation error -- pep8
| -rw-r--r-- | test.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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') |
