summaryrefslogtreecommitdiff
path: root/legacy
diff options
context:
space:
mode:
authorRolf Erik Lekang <me@rolflekang.com>2015-01-23 12:07:54 +0100
committerTim Graham <timograham@gmail.com>2015-04-06 10:28:24 -0400
commit7851b97e4150d928c2c4468dab1805be76a95ad6 (patch)
tree25a8ea34c75da9847016a15b799f85c2a800b0bd /legacy
parenta7a2b1c4b398d8e743cd6a6efa5becd1c9f92c04 (diff)
Ported from Python 2.7 to Python 3.4.
* Swapped unipath with pathlib * Used pykismet3 instead of akismet * Replaced django-pygments with template tag in the docs app
Diffstat (limited to 'legacy')
-rw-r--r--legacy/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/legacy/tests.py b/legacy/tests.py
index 7e941f39..c7a6d785 100644
--- a/legacy/tests.py
+++ b/legacy/tests.py
@@ -8,4 +8,4 @@ class LegacyTests(TestCase):
def test_gone(self):
response = self.client.get('/comments/')
- self.assertEquals(response.status_code, 410)
+ self.assertEqual(response.status_code, 410)