diff options
Diffstat (limited to 'integration/apps/bun-dev-index-html.sh')
-rw-r--r-- | integration/apps/bun-dev-index-html.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integration/apps/bun-dev-index-html.sh b/integration/apps/bun-dev-index-html.sh index 3277b0bcd..eef41f78b 100644 --- a/integration/apps/bun-dev-index-html.sh +++ b/integration/apps/bun-dev-index-html.sh @@ -56,12 +56,12 @@ if [[ "$(curl --fail -sS http://localhost:8087/foo/foo)" != "$index_content" ]]; fi if [[ "$(curl --fail -sS http://localhost:8087/bacon)" != "$bacon_content" ]]; then - echo "ERR: Expected '$index_content', got '$(curl --fail -sS http://localhost:8087/bacon)'" + echo "ERR: Expected '$bacon_content', got '$(curl --fail -sS http://localhost:8087/bacon)'" exit 1 fi if [[ "$(curl --fail -sS http://localhost:8087/bacon.html)" != "$bacon_content" ]]; then - echo "ERR: Expected '$index_content', got '$(curl --fail -sS http://localhost:8087/bacon.html)'" + echo "ERR: Expected '$bacon_content', got '$(curl --fail -sS http://localhost:8087/bacon.html)'" exit 1 fi |