Skip to content

Commit

Permalink
fix(helm): remove space before colon in release report assertion (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
manusa authored Sep 27, 2024
1 parent 3e1c3ee commit 6e28885
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,10 @@ void k8sHelmInstall() throws Exception {
// Then
assertThat(byteArrayOutputStream.toString(),
allOf(containsString("Installing Helm Chart the-chart-name 1.0-KUBERNETES"),
containsString("NAME : spring-boot-helm-config-k8s"),
containsString("NAMESPACE : "),
containsString("STATUS : deployed"),
containsString("REVISION : 1")));
containsString("NAME: spring-boot-helm-config-k8s"),
containsString("NAMESPACE: "),
containsString("STATUS: deployed"),
containsString("REVISION: 1")));
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ void ocHelmInstall() throws Exception {
// Then
assertThat(byteArrayOutputStream.toString(),
allOf(containsString("Installing Helm Chart different-name-for-oc 0.1-OC"),
containsString("NAME : spring-boot-helm-config-oc"),
containsString("NAMESPACE : "),
containsString("STATUS : deployed"),
containsString("REVISION : 1")));
containsString("NAME: spring-boot-helm-config-oc"),
containsString("NAMESPACE: "),
containsString("STATUS: deployed"),
containsString("REVISION: 1")));
}

@Test
Expand Down

0 comments on commit 6e28885

Please sign in to comment.