Skip to content

Commit

Permalink
Use example.com in single IP test
Browse files Browse the repository at this point in the history
test.com now has 2 IPs so the test was failing, instead use example.com
which still has 1 IP.
  • Loading branch information
sberrevoets committed Mar 20, 2024
1 parent a46542c commit cd5b76e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/KronosTests/DNSResolverTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ final class DNSResolverTests: XCTestCase {

func testResolveOneIP() {
let expectation = self.expectation(description: "Query host's DNS for a single IP")
DNSResolver.resolve(host: "test.com") { addresses in
DNSResolver.resolve(host: "example.com") { addresses in
XCTAssertEqual(addresses.count, 1)
expectation.fulfill()
}
Expand Down

0 comments on commit cd5b76e

Please sign in to comment.