Skip to content

Commit 2ad005a

Browse files
committed
Codestyle change
1 parent 18b5b52 commit 2ad005a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_asyncio/test_multidb/test_healthcheck.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,9 +282,7 @@ async def test_database_is_healthy_when_bdb_matches_by_dns_name(
282282

283283
assert await hc.check_health(db) is True
284284
# Base URL must be set correctly
285-
assert (
286-
hc._http_client.client.base_url == "https://healthcheck.example.com:1234"
287-
)
285+
assert hc._http_client.client.base_url == "https://healthcheck.example.com:1234"
288286
# Calls: first to list bdbs, then to availability
289287
assert mock_http.get.call_count == 2
290288
first_call = mock_http.get.call_args_list[0]

0 commit comments

Comments
 (0)