From 157d929f05aae2fe15e8ec07ae5a2fc782626736 Mon Sep 17 00:00:00 2001 From: Soner Sayakci Date: Sat, 27 Dec 2025 09:03:10 +0100 Subject: [PATCH] fix: gateway difference on orbstack --- tests/Unit/Utils/HostResolverTest.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/Unit/Utils/HostResolverTest.php b/tests/Unit/Utils/HostResolverTest.php index f428b94..a92ed90 100644 --- a/tests/Unit/Utils/HostResolverTest.php +++ b/tests/Unit/Utils/HostResolverTest.php @@ -159,6 +159,11 @@ protected function isInContainer(): bool { return true; } + + protected function findDefaultGateway(): ?string + { + return null; + } }; putenv('DOCKER_HOST=unix://docker:2375'); @@ -184,6 +189,11 @@ protected function isInContainer(): bool { return true; } + + protected function findDefaultGateway(): ?string + { + return null; + } }; putenv('DOCKER_HOST=unix://podman.sock');