[Task 69271] fixes after master merge

This commit is contained in:
Raf Ponsaerts
2020-03-03 14:26:39 +01:00
parent 0829cf5b51
commit 767274b98b
2 changed files with 2 additions and 2 deletions

View File

@@ -1590,7 +1590,7 @@ public class WorkflowItemRestRepositoryIT extends AbstractControllerIntegrationT
String token = getAuthToken(admin.getEmail(), password);
getClient(token).perform(get("/api/workflow/workflowitems/search/item"))
.andExpect(status().isUnprocessableEntity());
.andExpect(status().isBadRequest());
}
@Test

View File

@@ -1981,7 +1981,7 @@ public class WorkspaceItemRestRepositoryIT extends AbstractControllerIntegration
.build();
String token = getAuthToken(admin.getEmail(), password);
getClient(token).perform(get("/api/submission/workspaceitems/search/item"))
.andExpect(status().isUnprocessableEntity());
.andExpect(status().isBadRequest());
}
@Test