diff --git a/pkg/runtime/runtime_manifest_test.go b/pkg/runtime/runtime_manifest_test.go index bd4048ba0..f49924dc0 100644 --- a/pkg/runtime/runtime_manifest_test.go +++ b/pkg/runtime/runtime_manifest_test.go @@ -456,7 +456,7 @@ dependencies: bundle: reference: "getporter/porter-mysql" outputs: - mappedOutput: Mapped ${ bundle.dependencies.mysql.outputs.password } + mappedOutput: ${ bundle.dependencies.mysql.outputs.password } install: - mymixin: @@ -495,7 +495,7 @@ install: require.IsType(t, mixin["Arguments"], []interface{}{}, "Data.mymixin.Arguments has incorrect type") args := mixin["Arguments"].([]interface{}) - assert.Equal(t, []interface{}{"Mapped password"}, args, "Incorrect template args passed to the mixin step") + assert.Equal(t, []interface{}{"password"}, args, "Incorrect template args passed to the mixin step") } func TestResolveInMainDict(t *testing.T) {