Do the kotest tests generally run on *nix? I'm get...
# kotest
j
Do the kotest tests generally run on *nix? I'm getting a failure in
Blonde("foo", true, 23423, Paths.get("a/b/c"))
printing as
Blonde(a=foo, b=true, c=23423, p=a\b\c)
but the tests expect
Blonde(a=foo, b=true, c=23423, p=a/b/c)
- would I break something by changing the static string to use
File.separator
so these tests work on windows as well? Or am I missing something here 🤔 I'm a little wary since I'm changing the clue code which seems related. https://gist.github.com/jschneidereit/251bc1392639ff18741bcb2a844e9fea
s
I use linux
I think macs are shit 😛
🙈 1
😮 1
I think File.separator makes total sense to be compatible
j
Indeed they are 😂
Cool, I'll throw it in 👍