From 7ff1654ed3bae0cf0bba9981b0bca7013b2b67f3 Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 4 Nov 2024 09:30:21 -0500 Subject: [PATCH] fix(tests): Add RemoteAddress v6 zone ID test Signed-off-by: Josh --- tests/lib/Security/Ip/RemoteAddressTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/lib/Security/Ip/RemoteAddressTest.php b/tests/lib/Security/Ip/RemoteAddressTest.php index 22f38f62356..1f200805de7 100644 --- a/tests/lib/Security/Ip/RemoteAddressTest.php +++ b/tests/lib/Security/Ip/RemoteAddressTest.php @@ -52,6 +52,8 @@ class RemoteAddressTest extends \Test\TestCase { // No configuration ['1.2.3.4', false, true], ['1234:4567:8910::', false, true], + // v6 Zone ID + ['fe80::1fc4:15d8:78db:2319%enp4s0', false, true], // Empty configuration ['1.2.3.4', [], true], ['1234:4567:8910::', [], true],