Skip to content

Commit 19d5b2a

Browse files
Fix carvel_bake_test.go to pass missing variables and expect Kilnfile error
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent e79df4c commit 19d5b2a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

internal/acceptance/carvel/carvel_bake_test.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ var _ = Describe("carvel bake command", func() {
7878
"carvel", "bake",
7979
"--source-directory", inputPath,
8080
"--output-file", outputFile,
81+
"--variable", "artifactory_host=fake-host",
82+
"--variable", "artifactory_repo=fake-repo",
83+
"--variable", "artifactory_username=fake-user",
84+
"--variable", "artifactory_password=fake-pass",
8185
}
8286
})
8387

@@ -193,7 +197,7 @@ var _ = Describe("carvel bake command", func() {
193197
Expect(err).NotTo(HaveOccurred())
194198

195199
Eventually(session).Should(gexec.Exit(1))
196-
Eventually(session.Err).Should(gbytes.Say("base.yml"))
200+
Eventually(session.Err).Should(gbytes.Say("Kilnfile"))
197201
})
198202
})
199203
})

0 commit comments

Comments
 (0)