Skip to content

Commit

Permalink
Merge pull request #488 from averevki/fix-assert-msg
Browse files Browse the repository at this point in the history
Fix multicluster test assert message
  • Loading branch information
jsmolar committed Jul 24, 2024
2 parents d6499c9 + f96eca4 commit 2b7e03c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testsuite/tests/multicluster/test_multicluster_dns.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ def test_multicluster_dns(client, hostname, gateways):
answer = dns.resolver.resolve(hostname.hostname)[0]
assert answer.address in ips, f"Got {answer.address} that is not expected in {ips}"
dns_ips.add(answer.address)
assert ips == dns_ips, f"Expected IPs and actual IP mismatch, got {ips}, expected {ips}"
assert ips == dns_ips, f"Expected IPs and actual IP mismatch, got {dns_ips}, expected {ips}"

0 comments on commit 2b7e03c

Please sign in to comment.