Skip to content

Commit

Permalink
Don't use deprecated assertEquals.
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Apr 3, 2016
1 parent e680479 commit 7b70438
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dulwich/tests/test_porcelain.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,10 +530,10 @@ class StatusTests(PorcelainTestCase):

def test_empty(self):
results = porcelain.status(self.repo)
self.assertEquals(
self.assertEqual(
{'add': [], 'delete': [], 'modify': []},
results.staged)
self.assertEquals([], results.unstaged)
self.assertEqual([], results.unstaged)

def test_status(self):
"""Integration test for `status` functionality."""
Expand Down

0 comments on commit 7b70438

Please sign in to comment.