aboutsummaryrefslogtreecommitdiff
path: root/test.sh
diff options
context:
space:
mode:
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