summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/transactions/0021rule_0
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/transactions/0021rule_0')
-rwxr-xr-xtests/shell/testcases/transactions/0021rule_014
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/shell/testcases/transactions/0021rule_0 b/tests/shell/testcases/transactions/0021rule_0
index 2467124f..284a9e71 100755
--- a/tests/shell/testcases/transactions/0021rule_0
+++ b/tests/shell/testcases/transactions/0021rule_0
@@ -24,17 +24,3 @@ if [ $? -ne 0 ] ; then
echo "E: unable to load good ruleset" >&2
exit 1
fi
-
-EXPECTED="table ip x {
- chain y {
- ip saddr 2.2.2.2 counter packets 0 bytes 0
- }
-}"
-
-GET="$($NFT list ruleset)"
-
-if [ "$EXPECTED" != "$GET" ] ; then
- DIFF="$(which diff)"
- [ -x $DIFF ] && $DIFF -u <(echo "$EXPECTED") <(echo "$GET")
- exit 1
-fi