Skip to content

Commit

Permalink
fix(merge): fixup merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
akantcheff committed Oct 25, 2024
1 parent c831bae commit e924a79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public void should_respond_500_Internal_server_error_when_error_occurs_on_proces
public void should_respond_429_Too_Many_Requests_when_case_creation_limit_reached() throws Exception {
var retryAfter = new Date();
doThrow(new ProcessExecutionException(new RuntimeException("aMessage"), retryAfter.getTime()))
.when(processAPI).startProcessWithInputs(anyLong(), anyMapOf(String.class, Serializable.class));
.when(processAPI).startProcessWithInputs(anyLong(), anyMap());

final Response response = request(URL_API_PROCESS_INSTANTIATION_TEST).post(VALID_POST_BODY);

Expand Down

0 comments on commit e924a79

Please sign in to comment.