@@ -62,26 +62,26 @@ void containsHeadersWithSeveralNamesNotPresent() {
6262 }
6363
6464 @ Test
65- void doesNotContainsHeader () {
66- assertThat (Map .of ("first" , "1" )).doesNotContainsHeader ("second" );
65+ void doesNotContainHeader () {
66+ assertThat (Map .of ("first" , "1" )).doesNotContainHeader ("second" );
6767 }
6868
6969 @ Test
70- void doesNotContainsHeaderWithNamePresent () {
70+ void doesNotContainHeaderWithNamePresent () {
7171 Map <String , String > map = Map .of ("first" , "1" );
7272 Assertions .assertThatExceptionOfType (AssertionError .class )
7373 .isThrownBy (() -> assertThat (map ).doesNotContainKey ("first" ))
7474 .withMessageContainingAll ("HTTP headers" , "first" );
7575 }
7676
7777 @ Test
78- void doesNotContainsHeaders () {
78+ void doesNotContainHeaders () {
7979 assertThat (Map .of ("first" , "1" , "third" , "3" ))
8080 .doesNotContainsHeaders ("second" , "fourth" );
8181 }
8282
8383 @ Test
84- void doesNotContainsHeadersWithSeveralNamesPresent () {
84+ void doesNotContainHeadersWithSeveralNamesPresent () {
8585 Map <String , String > map = Map .of ("first" , "1" , "second" , "2" , "third" , "3" );
8686 Assertions .assertThatExceptionOfType (AssertionError .class )
8787 .isThrownBy (() -> assertThat (map ).doesNotContainsHeaders ("first" , "another-wrong-name" , "second" ))
0 commit comments