File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 27
27
exceptions .TooManyRequests ,
28
28
exceptions .InternalServerError ,
29
29
exceptions .BadGateway ,
30
+ requests .exceptions .ChunkedEncodingError ,
30
31
requests .exceptions .ConnectionError ,
31
32
auth_exceptions .TransportError ,
32
33
)
Original file line number Diff line number Diff line change @@ -51,6 +51,10 @@ def test_w_unstructured_requests_connectionerror(self):
51
51
exc = requests .exceptions .ConnectionError ()
52
52
self .assertTrue (self ._call_fut (exc ))
53
53
54
+ def test_w_unstructured_requests_chunked_encoding_error (self ):
55
+ exc = requests .exceptions .ChunkedEncodingError ()
56
+ self .assertTrue (self ._call_fut (exc ))
57
+
54
58
def test_w_auth_transporterror (self ):
55
59
from google .auth .exceptions import TransportError
56
60
You can’t perform that action at this time.
0 commit comments