Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mswertz committed Oct 24, 2024
1 parent 86da8b0 commit 54387bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ public void testCsvApi_tableCsvUploadDownload() {
String path = "/pet store/api/csv/Tag";

String result = given().sessionId(SESSION_ID).accept(ACCEPT_CSV).when().get(path).asString();
assertTrue(result.contains("green,,colors"));
assertTrue(result.contains("green,,,colors"));

String update = "name,parent\r\nyellow,colors\r\n";
given().sessionId(SESSION_ID).body(update).when().post(path).then().statusCode(200);
Expand Down

0 comments on commit 54387bb

Please sign in to comment.