diff options
-rwxr-xr-x | tests/shell/run-tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/shell/run-tests.sh b/tests/shell/run-tests.sh index d2f3e96b..431d5559 100755 --- a/tests/shell/run-tests.sh +++ b/tests/shell/run-tests.sh @@ -110,7 +110,7 @@ do dumppath="$(dirname ${testfile})/dumps" dumpfile="${dumppath}/$(basename ${testfile}).nft" if [ "$rc_got" == "${POSITIVE_RET}" ] && [ -f ${dumpfile} ]; then - test_output=$(${DIFF} ${dumpfile} <(nft list ruleset) 2>&1) + test_output=$(${DIFF} ${dumpfile} <($NFT list ruleset) 2>&1) rc_spec=$? fi |