diff options
author | 2022-02-24 20:43:13 -0800 | |
---|---|---|
committer | 2022-02-24 20:43:13 -0800 | |
commit | f6ea59dbd9e1eb4a17369a5337c8dd3dc8b0b8c2 (patch) | |
tree | 57941fe57e2e83a2a9839bf87fe71ee923836427 /integration/apps/bun-dev-index-html.sh | |
parent | 986895f8c1c7f40b3eaaa7d7bfd0e27c425aebec (diff) | |
download | bun-f6ea59dbd9e1eb4a17369a5337c8dd3dc8b0b8c2.tar.gz bun-f6ea59dbd9e1eb4a17369a5337c8dd3dc8b0b8c2.tar.zst bun-f6ea59dbd9e1eb4a17369a5337c8dd3dc8b0b8c2.zip |
misc
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 |