diff --git a/tests/test_retry.py b/tests/test_retry.py index 229f569..c0cebb6 100644 --- a/tests/test_retry.py +++ b/tests/test_retry.py @@ -4,6 +4,9 @@ from unittest.mock import MagicMock, patch + + + def test_gets_response_after_retry_on_connection_error(shopify_client): with patch( "urllib3.connectionpool.HTTPConnectionPool._make_request" @@ -26,6 +29,8 @@ def test_gets_response_after_retry_on_connection_error(shopify_client): assert mock_request.call_count == 4 + + def test_fails_after_retry_on_connection_error(shopify_client): with patch( "urllib3.connectionpool.HTTPConnectionPool._make_request"