aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--google/api_core/retry.py4
-rw-r--r--tests/unit/test_exceptions.py1
2 files changed, 3 insertions, 2 deletions
diff --git a/google/api_core/retry.py b/google/api_core/retry.py
index 44cd746..bd3a4a6 100644
--- a/google/api_core/retry.py
+++ b/google/api_core/retry.py
@@ -114,9 +114,9 @@ The following server errors are considered transient:
- :class:`google.api_core.exceptions.TooManyRequests` - HTTP 429
- :class:`google.api_core.exceptions.ServiceUnavailable` - HTTP 503
- :class:`requests.exceptions.ConnectionError`
-- :class:`requests.exceptions.ChunkedEncodingError` - The server declared
+- :class:`requests.exceptions.ChunkedEncodingError` - The server declared
chunked encoding but sent an invalid chunk.
-- :class:`google.auth.exceptions.TransportError` - Used to indicate an
+- :class:`google.auth.exceptions.TransportError` - Used to indicate an
error occurred during an HTTP request.
"""
# pylint: enable=invalid-name
diff --git a/tests/unit/test_exceptions.py b/tests/unit/test_exceptions.py
index 1059945..e9709f2 100644
--- a/tests/unit/test_exceptions.py
+++ b/tests/unit/test_exceptions.py
@@ -102,6 +102,7 @@ def test_from_http_response_no_content():
def test_from_http_response_text_content():
response = make_response(b"message")
+ response.encoding = "UTF8" # suppress charset_normalizer warning
exception = exceptions.from_http_response(response)