Skip to content

Commit 458c215

Browse files
committed
assertEquals -> assertEqual
1 parent b4d1c8e commit 458c215

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unittests/test_exception_handling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def test_error_message_and_call_count(self, mocked_parse_args, mocked_request, m
8989
self.assertEqual(str(e.exception), expected_error_message)
9090

9191
# Verify the call count for each error.
92-
self.assertEquals(call_count, mocked_request.call_count)
92+
self.assertEqual(call_count, mocked_request.call_count)
9393

9494
@mock.patch("tap_github.client.LOGGER.warning")
9595
def test_skip_404_error(self, mock_logger, mocked_parse_args, mocked_request, mock_verify_access, mock_sleep):

0 commit comments

Comments
 (0)