Skip to content

Commit 85ab840

Browse files
committed
fix for case DumpHttpExchangeFilterTest.shouldIncludeRequestAndResponseHeaders
1 parent 5cd0b18 commit 85ab840

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/test/org/openqa/selenium/remote/http/DumpHttpExchangeFilterTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void shouldIncludeRequestAndResponseHeaders() {
3434
dumpFilter.requestLogMessage(
3535
new HttpRequest(GET, "/foo").addHeader("Peas", "and Sausages"));
3636

37-
assertThat(reqLog).contains("Peas");
37+
assertThat(reqLog).contains("peas");
3838
assertThat(reqLog).contains("and Sausages");
3939

4040
String resLog =
@@ -43,7 +43,7 @@ void shouldIncludeRequestAndResponseHeaders() {
4343
.addHeader("Cheese", "Brie")
4444
.setContent(string("Hello, World!", UTF_8)));
4545

46-
assertThat(resLog).contains("Cheese");
46+
assertThat(resLog).contains("cheese");
4747
assertThat(resLog).contains("Brie");
4848
}
4949

0 commit comments

Comments
 (0)