summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarmon <Harmon758@gmail.com>2020-02-16 14:06:05 -0600
committerHarmon <Harmon758@gmail.com>2020-02-16 14:06:05 -0600
commit625969d5f7532240fcd8e3968ac809d294a647be (patch)
tree3b36ef991150df88869ec1aeaff98340e351c814
parente671d243c09aa8162b5c0b7f12496768009a6db0 (diff)
downloadgitpython-625969d5f7532240fcd8e3968ac809d294a647be.tar.gz
Replace deprecated assertNotEquals alias with assertNotEqual
In TestIndex.test_index_mutation
-rw-r--r--git/test/test_index.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_index.py b/git/test/test_index.py
index 0b830281..355cd87e 100644
--- a/git/test/test_index.py
+++ b/git/test/test_index.py
@@ -595,7 +595,7 @@ class TestIndex(TestBase):
self._assert_entries(entries)
self._assert_fprogress(entries)
self.assertEqual(len(entries), 1)
- self.assertNotEquals(entries[0].hexsha, null_hex_sha)
+ self.assertNotEqual(entries[0].hexsha, null_hex_sha)
# add symlink
if not is_win: