Skip to content

Commit

Permalink
test: validate correct body contents
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-s committed Aug 18, 2024
1 parent 20f4a5a commit 3df044b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/qernal_function_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
)

func validateResponseBody(status int, body string) bool {
if status == 200 && strings.Contains(body, "Hello Word") {
if status == 200 && strings.Contains(body, "This is a test server used for Testcontainers") {
return true
}

Expand Down

0 comments on commit 3df044b

Please sign in to comment.