mirror of
https://github.com/django/django.git
synced 2025-11-01 12:25:37 +00:00
Renamed two tests so they actually run.
This commit is contained in:
parent
137a3d7c77
commit
7577d03809
1 changed files with 2 additions and 2 deletions
|
|
@ -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/")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue