Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 11755ed

Browse files
committed
Update test_streaming_pull_manager.py
1 parent 8139e53 commit 11755ed

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/unit/pubsub_v1/subscriber/test_streaming_pull_manager.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2277,7 +2277,11 @@ def test__should_terminate_true():
22772277
def test__should_terminate_false():
22782278
manager = make_manager()
22792279

2280-
for exc in [exceptions.ResourceExhausted(""), exceptions.ServiceUnavailable(""), exceptions.Cancelled("")]:
2280+
for exc in [
2281+
exceptions.ResourceExhausted(""),
2282+
exceptions.ServiceUnavailable(""),
2283+
exceptions.Cancelled(""),
2284+
]:
22812285
assert not manager._should_terminate(exc)
22822286

22832287

0 commit comments

Comments
 (0)