Skip to content

Commit

Permalink
Fix unit tests broken with changes to fix integ tests
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 19, 2023
1 parent 673a5f5 commit 5c69354
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ public void testMissingInputs() {
"model_type",
"embedding_dimension",
"framework_type",
"model_group_id",
"version",
"url",
"model_content_hash_value" }) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ public void testFailedGraphValidation() {
FlowFrameworkException.class,
() -> workflowProcessSorter.validateGraph(sortedProcessNodes, validator)
);
assertEquals("Invalid graph, missing the following required inputs : [connector_id]", ex.getMessage());
assertEquals("Invalid workflow, node [workflow_step_1] missing the following required inputs : [connector_id]", ex.getMessage());
assertEquals(RestStatus.BAD_REQUEST, ex.getRestStatus());
}

Expand Down

0 comments on commit 5c69354

Please sign in to comment.