File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -578,11 +578,11 @@ async def test_pool_backoff_preserves_existing_connections(self):
578578 async def test_pool_backoff_limits_maxConnecting (self ):
579579 client = await self .async_rs_or_single_client (maxConnecting = 10 )
580580 pool = await async_get_pool (client )
581- assert pool .maxConnecting == 10
581+ assert pool .max_connecting == 10
582582 pool ._backoff = 1
583- assert pool .maxConnecting == 1
583+ assert pool .max_connecting == 1
584584 pool ._backoff = 0
585- assert pool .maxConnecting == 10
585+ assert pool .max_connecting == 10
586586 await client .close ()
587587
588588
Original file line number Diff line number Diff line change @@ -576,11 +576,11 @@ def test_pool_backoff_preserves_existing_connections(self):
576576 def test_pool_backoff_limits_maxConnecting (self ):
577577 client = self .rs_or_single_client (maxConnecting = 10 )
578578 pool = get_pool (client )
579- assert pool .maxConnecting == 10
579+ assert pool .max_connecting == 10
580580 pool ._backoff = 1
581- assert pool .maxConnecting == 1
581+ assert pool .max_connecting == 1
582582 pool ._backoff = 0
583- assert pool .maxConnecting == 10
583+ assert pool .max_connecting == 10
584584 client .close ()
585585
586586
You can’t perform that action at this time.
0 commit comments