Skip to content

Commit

Permalink
Renamed two tests so they actually run.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaugustin committed Dec 23, 2013
1 parent 137a3d7 commit 7577d03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/comment_tests/tests/test_app_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ def testGetFlagURL(self):
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/")

0 comments on commit 7577d03

Please sign in to comment.