From bf8988187f0d0ed87934b6e2537ceb1a8f61fbd4 Mon Sep 17 00:00:00 2001 From: Kristof Provost Date: Fri, 3 May 2024 09:51:37 +0200 Subject: [PATCH] pf tests: fix REQUIRED_MODULES typo This ensures we don't try to run the nat66 tests if pf is not loaded. Sponsored by: Rubicon Communications, LLC ("Netgate") --- tests/sys/netpfil/pf/nat66.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sys/netpfil/pf/nat66.py b/tests/sys/netpfil/pf/nat66.py index 12d3cb25af0a..3a037ac710fc 100644 --- a/tests/sys/netpfil/pf/nat66.py +++ b/tests/sys/netpfil/pf/nat66.py @@ -47,7 +47,7 @@ def run(self): sp.send(self._packet) class TestNAT66(VnetTestTemplate): - REQUIRED_MODUES = [ "pf" ] + REQUIRED_MODULES = [ "pf" ] TOPOLOGY = { "vnet1": {"ifaces": ["if1"]}, "vnet2": {"ifaces": ["if1", "if2"]},