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