From bc4bab9380c666abc03ec1f42d7294a5bf8ff1b8 Mon Sep 17 00:00:00 2001 From: Azimjon Ilkhomov <31452507+ajilk@users.noreply.github.com> Date: Fri, 2 Aug 2019 00:20:57 -0400 Subject: [PATCH] Fix typo --- scripts/acceptance.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/acceptance.sh b/scripts/acceptance.sh index 9f15a091..309d588b 100755 --- a/scripts/acceptance.sh +++ b/scripts/acceptance.sh @@ -6,7 +6,7 @@ set -e X=$(./yq w ./examples/sample.yaml b.c 3 | ./yq r - b.c) if [[ $X != 3 ]]; then - echo "Failed acceptance test: expected 2 but was $X" + echo "Failed acceptance test: expected 3 but was $X" exit 1 fi echo "acceptance tests passed"