Skip to content

Commit

Permalink
fix test case failure
Browse files Browse the repository at this point in the history
Signed-off-by: Jeromy Cannon <[email protected]>
  • Loading branch information
jeromy-cannon committed Sep 27, 2023
1 parent c7084df commit a52b0db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void testHelmInstallChartTaskSimple() {
void testErrorThrownWhenChartNotFound() {
assertThrows(HelmExecutionException.class, () -> {
HelmInstallChartTask helmInstallChartTask = project.getTasks()
.create("helmInstallChart", HelmInstallChartTask.class, task -> {
.create("helmInstallNonExistingChartChart", HelmInstallChartTask.class, task -> {
task.getChart().set("not-a-chart");
task.getCreateNamespace().set(true);
task.getNamespace().set("test-failure");
Expand Down

0 comments on commit a52b0db

Please sign in to comment.