Skip to content

Commit

Permalink
Use explicit http scheme in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cmuench committed Dec 25, 2023
1 parent a38e9af commit c9eabd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ health_checks() {
assert_success

# Check opensearch port
ddev exec "curl -s opensearch:9200" | grep "${PROJNAME}-opensearch"
ddev exec "curl -s http://opensearch:9200" | grep "${PROJNAME}-opensearch"

# Check if dashboard is accessible
ddev exec "curl -s opensearch-dashboards:5601/app/home" | grep "OpenSearch Dashboards"
ddev exec "curl -s http://opensearch-dashboards:5601/app/home" | grep "OpenSearch Dashboards"
}

teardown() {
Expand Down

0 comments on commit c9eabd1

Please sign in to comment.