We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2500549 commit 53ce633Copy full SHA for 53ce633
1 file changed
operator/src/test/java/it/aboutbits/postgresql/helm/HelmTest.java
@@ -30,7 +30,7 @@
30
class HelmTest {
31
private static final String ENV_VAR_KUBECONFIG = "KUBECONFIG";
32
33
- private static final String CRD_GROP = "postgresql.aboutbits.it";
+ private static final String CRD_GROUP = "postgresql.aboutbits.it";
34
private static final List<String> CRD_NAMES = List.of(
35
"clusterconnection",
36
"database",
@@ -101,7 +101,7 @@ void helmInstall_createsDeployment() throws IOException {
101
for (var crdName : CRD_NAMES) {
102
assertThat(chartPath.resolve("crds/%ss.%s-v1.yml".formatted(
103
crdName,
104
- CRD_GROP
+ CRD_GROUP
105
))).exists();
106
}
107
0 commit comments