From 37900341cf90f8873a0b5868097eefe663e25722 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Fri, 15 Nov 2024 17:46:10 +0000 Subject: [PATCH] hotfix(firewall): fix unit test for previous PR --- internal/firewall/support_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/firewall/support_test.go b/internal/firewall/support_test.go index ab0edbad1..d0d413d5e 100644 --- a/internal/firewall/support_test.go +++ b/internal/firewall/support_test.go @@ -24,7 +24,7 @@ func newDeleteTestRuleMatcher(path string) *cmdMatcher { func newListInputRulesMatcher(path string) *cmdMatcher { return newCmdMatcher(path, - "^-L$", "^INPUT$") + "^-nL$", "^INPUT$") } func newSetPolicyMatcher(path, inputPolicy string) *cmdMatcher { //nolint:unparam