Skip to content

Commit

Permalink
Fixes after rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Widdis <widdis@gmail.com>
  • Loading branch information
dbwiddis committed Dec 13, 2023
1 parent 1cbe20c commit 6704d48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void testDeprovisionWorkflow() throws IOException {
ActionListener<GetWorkflowStateResponse> responseListener = invocation.getArgument(2);

WorkflowState state = WorkflowState.builder()
.resourcesCreated(List.of(new ResourceCreated("create_connector", "step_1", "connectorId")))
.resourcesCreated(List.of(new ResourceCreated("create_connector", "step_1", "connector_id", "connectorId")))
.build();
responseListener.onResponse(new GetWorkflowStateResponse(state, true));
return null;
Expand Down Expand Up @@ -215,7 +215,7 @@ public void testFailToDeprovision() throws IOException {
ActionListener<GetWorkflowStateResponse> responseListener = invocation.getArgument(2);

WorkflowState state = WorkflowState.builder()
.resourcesCreated(List.of(new ResourceCreated("deploy_model", "step_1", "modelId")))
.resourcesCreated(List.of(new ResourceCreated("deploy_model", "step_1", "model_id", "modelId")))
.build();
responseListener.onResponse(new GetWorkflowStateResponse(state, true));
return null;
Expand Down

0 comments on commit 6704d48

Please sign in to comment.