diff --git a/Tests/KronosTests/DNSResolverTests.swift b/Tests/KronosTests/DNSResolverTests.swift index 3db9564..b008830 100644 --- a/Tests/KronosTests/DNSResolverTests.swift +++ b/Tests/KronosTests/DNSResolverTests.swift @@ -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() }