Skip to content
Snippets Groups Projects

[Core] Adding integration tests to core

Merged Aalekh Jain requested to merge ITs-2 into master
Compare and
35 files
+ 1503
1855
Compare changes
  • Side-by-side
  • Inline
Files
35
@@ -168,8 +168,8 @@ public class AwsWorkflowRunRepository implements IWorkflowRunRepository {
String dataPartitionId = headers.getPartitionIdWithFallbackToAccountId();
if (!workflowRunExists(workflowRun.getRunId(), dataPartitionId)) {
throw new AppException(HttpStatus.BAD_REQUEST.value(),
HttpStatus.BAD_REQUEST.getReasonPhrase(),
throw new AppException(HttpStatus.NOT_FOUND.value(),
HttpStatus.NOT_FOUND.getReasonPhrase(),
"WorkflowRun not found, cannot update");
}
Loading