Skip to content

Commit

Permalink
Fix multicluster test assert message
Browse files Browse the repository at this point in the history
  • Loading branch information
averevki committed Jul 15, 2024
1 parent d6499c9 commit f96eca4
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 f96eca4

Please sign in to comment.