Skip to content

Commit

Permalink
fix : assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed May 19, 2024
1 parent 09eb687 commit bf43ce2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void testRag() {
.post("/api/ai/chat")
.then()
.statusCode(200)
.body("queryResponse", containsString("Yes"))
.body("queryResponse", containsString("yes"))
.log()
.all();
}
Expand All @@ -84,7 +84,7 @@ void testRag2() {
.post("/api/ai/chat")
.then()
.statusCode(200)
.body("queryResponse", containsString("not"))
.body("queryResponse", containsString("don't"))
.log()
.all();
}
Expand Down

0 comments on commit bf43ce2

Please sign in to comment.