Skip to content

Commit 424c201

Browse files
chemelnucfinJon Wayne Parrott
authored andcommitted
Fix unit test for default max_bytes value (googleapis#4860)
1 parent e69343b commit 424c201

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pubsub/tests/unit/pubsub_v1/publisher/test_publisher_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_init():
3232
# A plain client should have an `api` (the underlying GAPIC) and a
3333
# batch settings object, which should have the defaults.
3434
assert isinstance(client.api, publisher_client.PublisherClient)
35-
assert client.batch_settings.max_bytes == 5 * (2 ** 20)
35+
assert client.batch_settings.max_bytes == 10 * (2 ** 20)
3636
assert client.batch_settings.max_latency == 0.05
3737
assert client.batch_settings.max_messages == 1000
3838

0 commit comments

Comments
 (0)