From 49d6002687927c6227dbe1aa6442352234a9997a Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Sat, 21 Jan 2023 16:57:29 +0100 Subject: [PATCH] Update test/IntegrationTest.php --- test/IntegrationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/IntegrationTest.php b/test/IntegrationTest.php index 2ab722c..efc245e 100644 --- a/test/IntegrationTest.php +++ b/test/IntegrationTest.php @@ -154,7 +154,7 @@ class IntegrationTest extends AsyncTestCase foreach ($records as $record) { self::assertSame(DnsRecord::A, $record->getType()); - $inAddr = @\inet_pton($record->getValue()); + $inAddr = \inet_pton($record->getValue()); self::assertNotFalse( $inAddr, "Server name google.com did not resolve to a valid IP address"