Skip to content

Commit

Permalink
Remove mapped from the value
Browse files Browse the repository at this point in the history
Signed-off-by: Kim Christensen <kimworking@gmail.com>
  • Loading branch information
kichristensen committed May 4, 2024
1 parent b002fa5 commit acd8eed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/runtime/runtime_manifest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit acd8eed

Please sign in to comment.