From a8f36a0ae26d129855f2565640726659f71231b1 Mon Sep 17 00:00:00 2001 From: Yevhen Ivantsov Date: Wed, 6 Sep 2023 09:16:04 +1000 Subject: [PATCH] Fix unit test name --- src/test/java/test/ContainersTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/test/ContainersTest.java b/src/test/java/test/ContainersTest.java index d3cc8e7fa..94a99ef19 100644 --- a/src/test/java/test/ContainersTest.java +++ b/src/test/java/test/ContainersTest.java @@ -96,7 +96,7 @@ void defaultContainerNames(Product product) throws Exception { @ParameterizedTest @EnumSource(value = Product.class, names = {"bamboo_agent"}, mode = EnumSource.Mode.EXCLUDE) - void containerNamesAsHelmChartName(Product product) throws Exception { + void containerNamesAsHelmReleaseName(Product product) throws Exception { final var resources = helm.captureKubeResourcesFromHelmChart(product, Map.of( product.name() + ".useHelmReleaseNameAsContainerName", "true" ));