Skip to content

Commit

Permalink
Tests: replace assertEquals with assertEqual
Browse files Browse the repository at this point in the history
assertEquals is deprecated.

Ref #16
  • Loading branch information
Linkid committed Sep 18, 2018
1 parent b4ff5eb commit e2b8db4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scoreboard/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def setUp(self):
)

def test_display_name(self):
self.assertEquals(str(self.player1), self.player1.name)
self.assertEqual(str(self.player1), self.player1.name)

def test_get_total_score(self):
total = 100 + 200
Expand Down

0 comments on commit e2b8db4

Please sign in to comment.