Skip to content

Commit

Permalink
test: HelmServiceInstallIT tests work on Windows (3277)
Browse files Browse the repository at this point in the history
issue-3265:-HelmServiceInstallIT test case failure fix
---
issue-3265: File separator added in place of string separator
  • Loading branch information
vijaybhagwat24 authored Aug 7, 2024
1 parent 6ca5629 commit 4618b45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,6 @@ void whenDependencyReferencedDoesNotExist_thenThrowException() throws IOExceptio
// When + Then
assertThatIllegalStateException()
.isThrownBy(() -> helmService.install(helmConfig))
.withMessage(String.format("An error occurred while updating chart dependencies: directory %s/the-dependency not found", tempDir));
.withMessage(String.format("An error occurred while updating chart dependencies: directory %s%sthe-dependency not found", tempDir,File.separator));
}
}

0 comments on commit 4618b45

Please sign in to comment.