Skip to content

Commit 4bf5b70

Browse files
authored
Fix test errors after commit 8c889a5 (bash completion w/posix) (#1001)
1 parent f473322 commit 4bf5b70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/groovy/sdkman/steps/command_line_interop_steps.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ And(~'the "(.*)" variable is not set') { String home ->
4848

4949
And(~'^the home path ends with \"([^\"]*)\"$') { String suffix ->
5050
def path = sdkmanBaseDir.absolutePath + "/" + suffix
51-
assert result.trim().equals(path)
51+
assert result.trim().endsWith(path)
5252
}

0 commit comments

Comments
 (0)