We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4e0260 commit 007ac2aCopy full SHA for 007ac2a
test/test_patch.py
@@ -171,7 +171,7 @@ def test_context_lines(self):
171
len([line for line in patch.patch.splitlines() if line.startswith(" ")])
172
)
173
174
- self.assertNotEquals(context_count, 0)
+ self.assertNotEqual(context_count, 0)
175
176
def test_no_context_lines(self):
177
old_blob = self.repo[BLOB_OLD_SHA]
@@ -189,4 +189,4 @@ def test_no_context_lines(self):
189
190
191
192
- self.assertEquals(context_count, 0)
+ self.assertEqual(context_count, 0)
0 commit comments