fileserver: Fix new file hide tests on Windows (#3719)

This commit is contained in:
Matt Holt 2020-09-11 13:09:16 -06:00 committed by GitHub
parent 0ee4378227
commit 1c5969b576
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -161,6 +161,12 @@ func TestFileHidden(t *testing.T) {
expect: false,
},
} {
// for Windows' sake
tc.inputPath = filepath.FromSlash(tc.inputPath)
for i := range tc.inputHide {
tc.inputHide[i] = filepath.FromSlash(tc.inputHide[i])
}
actual := fileHidden(tc.inputPath, tc.inputHide)
if actual != tc.expect {
t.Errorf("Test %d: Is %s hidden in %v? Got %t but expected %t",