summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-12-23 23:54:44 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-12-23 23:54:44 +0100
commit7577d03809849d3d878d0ee57ec9d6a8524b5b32 (patch)
tree88335425c92d4d4c8f2f984a620109eeb27aa1cd
parent137a3d7c77e235e6752b00fe9901a700b68fcef2 (diff)
Renamed two tests so they actually run.
-rw-r--r--tests/comment_tests/tests/test_app_api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/comment_tests/tests/test_app_api.py b/tests/comment_tests/tests/test_app_api.py
index 3d88b7e896..ffb78c851e 100644
--- a/tests/comment_tests/tests/test_app_api.py
+++ b/tests/comment_tests/tests/test_app_api.py
@@ -58,10 +58,10 @@ class CustomCommentTest(CommentTestCase):
c = Comment(id=12345)
self.assertEqual(comments.get_flag_url(c), "/flag/12345/")
- def getGetDeleteURL(self):
+ def testGetDeleteURL(self):
c = Comment(id=12345)
self.assertEqual(comments.get_delete_url(c), "/delete/12345/")
- def getGetApproveURL(self):
+ def testGetApproveURL(self):
c = Comment(id=12345)
self.assertEqual(comments.get_approve_url(c), "/approve/12345/")