summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/netns/0001nft-f_0
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2019-05-17 13:57:23 +0200
committerFlorian Westphal <fw@strlen.de>2019-05-19 19:09:49 +0200
commitb7459b0c854fc7a0d6cd86151b81035a8edf8e63 (patch)
tree5d1bcf1c9570b55a1a3a9c243df52e7ed7aef027 /tests/shell/testcases/netns/0001nft-f_0
parent7171f0bf8425a73d1043f53607f909f973b2a7e2 (diff)
tests: shell: avoid single-value anon sets
Future change is going to auto-change them to simple compare ops rather than lookup in set with only one element. Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'tests/shell/testcases/netns/0001nft-f_0')
-rwxr-xr-xtests/shell/testcases/netns/0001nft-f_06
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/shell/testcases/netns/0001nft-f_0 b/tests/shell/testcases/netns/0001nft-f_0
index 83448087..89bf5a3d 100755
--- a/tests/shell/testcases/netns/0001nft-f_0
+++ b/tests/shell/testcases/netns/0001nft-f_0
@@ -16,7 +16,7 @@ RULESET="table ip t {
chain c {
ct state new
- udp dport { 12345 }
+ udp dport 12345
ip saddr @s drop
jump other
}
@@ -32,7 +32,7 @@ table ip6 t {
chain c {
ct state new
- udp dport { 12345 }
+ udp dport 12345
ip6 saddr @s drop
jump other
}
@@ -48,7 +48,7 @@ table inet t {
chain c {
ct state new
- udp dport { 12345 }
+ udp dport 12345
ip6 saddr @s drop
jump other
}