Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
Signed-off-by: joshuabezaleel <joshua.bezaleel@gmail.com>
  • Loading branch information
joshuabezaleel committed Apr 27, 2022
1 parent a6973c4 commit 0b42ea9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/porter/build_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,10 @@ func TestPorter_BuildWithCustomValues(t *testing.T) {

p.TestConfig.TestContext.AddTestFile("./testdata/porter.yaml", config.Name)

err := p.LoadManifestFrom(config.Name)
m, err := manifest.LoadManifestFrom(context.Background(), p.Config, config.Name)
require.NoError(t, err)

err = p.buildBundle(m, "digest")
require.NoError(t, err)

opts := BuildOptions{Customs: []string{"customKey1=editedCustomValue1"}}
Expand Down

0 comments on commit 0b42ea9

Please sign in to comment.