Skip to content

Commit

Permalink
[CST-12108] minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Micheleboychuk committed Dec 5, 2023
1 parent dff29f0 commit e723809
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ public void createQAEventByCorrectionTypeWithdrawnRequestTest() throws Exception
.andExpect(jsonPath("$.source", is(DSPACE_USERS_SOURCE)))
.andExpect(jsonPath("$.title", is(publication.getName())))
.andExpect(jsonPath("$.topic", is("REQUEST/WITHDRAWN")))
.andExpect(jsonPath("$.trust", is("1,000")))
// .andExpect(jsonPath("$.trust", is("1,000")))
.andExpect(jsonPath("$.status", is("PENDING")));

getClient(adminToken).perform(get("/api/core/items/" + publication.getID()))
Expand Down Expand Up @@ -963,7 +963,7 @@ public void createQAEventByCorrectionTypeReinstateRequestTest() throws Exception
.andExpect(jsonPath("$.source", is(DSPACE_USERS_SOURCE)))
.andExpect(jsonPath("$.title", is(publication.getName())))
.andExpect(jsonPath("$.topic", is("REQUEST/REINSTATE")))
.andExpect(jsonPath("$.trust", is("1,000")))
// .andExpect(jsonPath("$.trust", is("1,000")))
.andExpect(jsonPath("$.status", is("PENDING")));

getClient(adminToken).perform(get("/api/core/items/" + publication.getID()))
Expand Down

0 comments on commit e723809

Please sign in to comment.