git: bf8988187f0d - main - pf tests: fix REQUIRED_MODULES typo
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 03 May 2024 07:52:51 UTC
The branch main has been updated by kp:
URL: https://cgit.FreeBSD.org/src/commit/?id=bf8988187f0d0ed87934b6e2537ceb1a8f61fbd4
commit bf8988187f0d0ed87934b6e2537ceb1a8f61fbd4
Author: Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2024-05-03 07:51:37 +0000
Commit: Kristof Provost <kp@FreeBSD.org>
CommitDate: 2024-05-03 07:51:37 +0000
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 @@ class DelayedSend(threading.Thread):
sp.send(self._packet)
class TestNAT66(VnetTestTemplate):
- REQUIRED_MODUES = [ "pf" ]
+ REQUIRED_MODULES = [ "pf" ]
TOPOLOGY = {
"vnet1": {"ifaces": ["if1"]},
"vnet2": {"ifaces": ["if1", "if2"]},