Skip to content

Commit d55eb6d

Browse files
committed
Fix build for windows
1 parent dabe43d commit d55eb6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/groovy/net/schmizz/sshj/xfer/FileSystemFileSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ class FileSystemFileSpec extends Specification {
4949
def child = file.getChild("bar//etc/passwd")
5050

5151
then:
52-
child.getFile().getPath() endsWith "foo/bar/etc/passwd"
52+
child.getFile().getPath().replace('\\', '/') endsWith "foo/bar/etc/passwd"
5353
}
5454
}

0 commit comments

Comments
 (0)