Skip to content

Commit c473ff2

Browse files
chore: whitespace
1 parent 8207ff2 commit c473ff2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/test_zones.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ answer = "test-project2:test-region2:test-instance2"
1111
[[zones]]
1212
host = 'bad.example.com'
1313
type = 'TXT'
14-
answer = "bad-instance-name"
14+
answer = "bad-instance-name"

tests/unit/test_resolver.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ async def test_DnsResolver_with_malformed_txt() -> None:
5454
resolver.port = 5053
5555
with pytest.raises(DnsResolutionError) as exc_info:
5656
await resolver.resolve("bad.example.com")
57-
assert (
58-
exc_info.value.args[0]
59-
== "Unable to parse TXT record for `bad.example.com` -> `bad-instance-name`"
60-
)
57+
assert (
58+
exc_info.value.args[0]
59+
== "Unable to parse TXT record for `bad.example.com` -> `bad-instance-name`"
60+
)
6161

6262

6363
async def test_DnsResolver_with_bad_dns_name() -> None:

0 commit comments

Comments
 (0)