We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18b5b52 commit 2ad005aCopy full SHA for 2ad005a
tests/test_asyncio/test_multidb/test_healthcheck.py
@@ -282,9 +282,7 @@ async def test_database_is_healthy_when_bdb_matches_by_dns_name(
282
283
assert await hc.check_health(db) is True
284
# Base URL must be set correctly
285
- assert (
286
- hc._http_client.client.base_url == "https://healthcheck.example.com:1234"
287
- )
+ assert hc._http_client.client.base_url == "https://healthcheck.example.com:1234"
288
# Calls: first to list bdbs, then to availability
289
assert mock_http.get.call_count == 2
290
first_call = mock_http.get.call_args_list[0]
0 commit comments