Skip to content

Commit

Permalink
fix test expectation
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Roberts <[email protected]>
  • Loading branch information
lachlan-roberts committed Feb 13, 2023
1 parent d18082c commit c874c00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public void testManyParts(MultiPartFormDataCompliance compliance) throws Excepti
assertThat(response.getStatus(), equalTo(HttpStatus.BAD_REQUEST_400));
String responseContent = IO.toString(listener.getInputStream());
assertThat(responseContent, containsString("Unable to parse form content"));
assertThat(responseContent, containsString("Form with too many keys"));
assertThat(responseContent, containsString("Form with too many parts"));
}

@ParameterizedTest
Expand Down

0 comments on commit c874c00

Please sign in to comment.