summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/dumps
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/nft-f/dumps')
-rw-r--r--tests/shell/testcases/nft-f/dumps/0008split_tables_0.nft4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/shell/testcases/nft-f/dumps/0008split_tables_0.nft b/tests/shell/testcases/nft-f/dumps/0008split_tables_0.nft
index 1ab6e864..d7e78089 100644
--- a/tests/shell/testcases/nft-f/dumps/0008split_tables_0.nft
+++ b/tests/shell/testcases/nft-f/dumps/0008split_tables_0.nft
@@ -1,10 +1,10 @@
table inet filter {
chain ssh {
- type filter hook input priority 0; policy accept;
+ type filter hook input priority filter; policy accept;
tcp dport 22 accept
}
chain input {
- type filter hook input priority 1; policy accept;
+ type filter hook input priority filter + 1; policy accept;
}
}