aboutsummaryrefslogtreecommitdiff
path: root/test.sh
diff options
context:
space:
mode:
authorCamil Staps2017-11-22 11:19:41 +0100
committerCamil Staps2017-11-22 11:19:41 +0100
commitf74dd82111c0f50fc7b1a222c796d258e82281fb (patch)
tree211974c5f39453853169d7f4fdfabc8783a44490 /test.sh
parentTest setup (diff)
Resolve run-time error for functions that use arguments twice further down the expression graph
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.sh b/test.sh
index cc6a14b..66ffe88 100755
--- a/test.sh
+++ b/test.sh
@@ -4,7 +4,7 @@ SUCCESS=true
while IFS=$'\t' read -r req res; do
outcome="$(./pf -nt "$req" | grep Result | cut -d' ' -f3-)"
if [ "$res" != "$outcome" ]; then
- echo "Test failed: $req"
+ echo "Test failed: $req"
echo "Expected result: $res"
echo "Actual result: $outcome"
SUCCESS=false