summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/transactions/0011chain_0
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/transactions/0011chain_0')
-rwxr-xr-xtests/shell/testcases/transactions/0011chain_014
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/shell/testcases/transactions/0011chain_0 b/tests/shell/testcases/transactions/0011chain_0
index 71afa6ed..aac33d56 100755
--- a/tests/shell/testcases/transactions/0011chain_0
+++ b/tests/shell/testcases/transactions/0011chain_0
@@ -22,17 +22,3 @@ if [ $? -ne 0 ] ; then
echo "E: unable to load good ruleset" >&2
exit 1
fi
-
-EXPECTED="table ip x {
- chain y {
- type filter hook input priority 0; policy drop;
- }
-}"
-
-GET="$($NFT list ruleset)"
-
-if [ "$EXPECTED" != "$GET" ] ; then
- DIFF="$(which diff)"
- [ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET")
- exit 1
-fi