Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Nov 9, 2023
1 parent 5529411 commit 368a4ad
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ void shouldRegisterWithStorageAndSendResponse() throws Exception {
resp.getHeaders(),
Matchers.equalTo(Map.of(HttpHeaders.LOCATION, "/api/v2.2/discovery/" + id)));
MatcherAssert.assertThat(
resp.getBody(), Matchers.equalTo(Map.of("token", token, "id", id.toString())));
resp.getBody(),
Matchers.equalTo(Map.of("token", token, "id", id.toString(), "env", Map.of())));

Mockito.verify(storage)
.register(
Expand Down

0 comments on commit 368a4ad

Please sign in to comment.