diff options
author | Harmon <Harmon758@gmail.com> | 2020-02-16 16:21:03 -0600 |
---|---|---|
committer | Harmon <Harmon758@gmail.com> | 2020-02-16 16:21:03 -0600 |
commit | 24d04e820ef721c8036e8424acdb1a06dc1e8b11 (patch) | |
tree | a717846106b9dd0e076c069e96cf1f372dc0f14a /git/test/test_commit.py | |
parent | ab361cfecf9c0472f9682d5d18c405bd90ddf6d7 (diff) | |
download | gitpython-24d04e820ef721c8036e8424acdb1a06dc1e8b11.tar.gz |
Replace assert_not_equal with assertNotEqual
Diffstat (limited to 'git/test/test_commit.py')
-rw-r--r-- | git/test/test_commit.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/git/test/test_commit.py b/git/test/test_commit.py index e0c4dc32..0e94bcb6 100644 --- a/git/test/test_commit.py +++ b/git/test/test_commit.py @@ -22,7 +22,6 @@ from git.objects.util import tzoffset, utc from git.repo.fun import touch from git.test.lib import ( TestBase, - assert_not_equal, with_rw_repo, fixture_path, StringProcessAdapter @@ -254,7 +253,7 @@ class TestCommit(TestCommitSerialization): commit2 = Commit(self.rorepo, Commit.NULL_BIN_SHA) commit3 = Commit(self.rorepo, "\1" * 20) self.assertEqual(commit1, commit2) - assert_not_equal(commit2, commit3) + self.assertNotEqual(commit2, commit3) def test_iter_parents(self): # should return all but ourselves, even if skip is defined |