Skip to content

Commit

Permalink
PUBLICATION_YEAR_SHOULD wrong name-pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
StigNorland committed Nov 13, 2023
1 parent 15db985 commit 04fefa6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ void shouldReturnSearchResultsWithEmptyHitsWhenQueryResultIsEmpty() throws IOExc

assertNotNull(gatewayResponse.headers());
assertEquals(HTTP_OK, gatewayResponse.statusCode());
assertThat(actualBody.totalHits(), is(equalTo(0L)));
assertThat(actualBody.totalHits(), is(equalTo(0)));
assertThat(actualBody.hits(), is(empty()));
assertDoesNotThrow(() -> gatewayResponse.body().id().normalize());
}
Expand All @@ -181,7 +181,7 @@ void shouldReturn200WhenSortOrderIsNotSpecified() throws IOException {

assertNotNull(gatewayResponse.headers());
assertEquals(HTTP_OK, gatewayResponse.statusCode());
assertThat(actualBody.totalHits(), is(equalTo(0L)));
assertThat(actualBody.totalHits(), is(equalTo(0)));
assertThat(actualBody.hits(), is(empty()));
assertDoesNotThrow(() -> gatewayResponse.body().id().normalize());
}
Expand Down

0 comments on commit 04fefa6

Please sign in to comment.