summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/flowtable/0001flowtable_0
diff options
context:
space:
mode:
authorEric Jallot <ejallot@gmail.com>2019-10-08 20:06:32 +0200
committerPhil Sutter <phil@nwl.cc>2019-10-08 20:38:01 +0200
commitd55bdfac89610474115fdc976d28d5f23b06c32e (patch)
treeaef63249f434cf1e135c75a152a435f9e657910c /tests/shell/testcases/flowtable/0001flowtable_0
parent1b585afb6f114050d21f0ac5daecdde298cf480f (diff)
tests: shell: fix failed tests due to missing quotes
Add double quotes to protect newlines when using <<< redirection. See also commit b878cb7d83855. Signed-off-by: Eric Jallot <ejallot@gmail.com> Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'tests/shell/testcases/flowtable/0001flowtable_0')
-rwxr-xr-xtests/shell/testcases/flowtable/0001flowtable_02
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/shell/testcases/flowtable/0001flowtable_0 b/tests/shell/testcases/flowtable/0001flowtable_0
index 8336ec5a..2e180994 100755
--- a/tests/shell/testcases/flowtable/0001flowtable_0
+++ b/tests/shell/testcases/flowtable/0001flowtable_0
@@ -12,4 +12,4 @@ EXPECTED='table inet t {
}'
set -e
-$NFT -f - <<< $EXPECTED
+$NFT -f - <<< "$EXPECTED"