Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mfleader committed Feb 16, 2024
1 parent cbe7449 commit 93a5df6
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions engine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,27 +221,27 @@ func TestE2EWorkflowDefaultInput(t *testing.T) {
content := map[string][]byte{
"workflow.yaml": []byte(`version: v0.2.0
input:
root: RootObject
objects:
RootObject:
id: RootObject
properties:
name:
type:
type_id: string
default: not
required: false
root: RootObject
objects:
RootObject:
id: RootObject
properties:
name:
type:
type_id: string
default: not
required: false
steps:
example:
plugin:
src: quay.io/arcalot/arcaflow-plugin-template-python:0.2.1
deployment_type: image
step: hello-world
input:
name: !expr $.input.name
example:
plugin:
src: quay.io/arcalot/arcaflow-plugin-template-python:0.2.1
deployment_type: image
step: hello-world
input:
name: !expr $.input.name
outputs:
success:
message: !expr $.steps.example.outputs.success.message`),
success:
message: !expr $.steps.example.outputs.success.message`),
}
fileCache := loadfile.NewFileCache("", content)
outputID, outputData, outputError, err := createTestEngine(t).RunWorkflow(
Expand Down

0 comments on commit 93a5df6

Please sign in to comment.