Fix test for Windows

This commit is contained in:
John Starich 2020-07-11 20:57:46 -05:00
parent 57ab25aed5
commit d443df9ff3
1 changed files with 1 additions and 1 deletions

View File

@ -477,7 +477,7 @@ func TestMemFsChmod(t *testing.T) {
t.Parallel() t.Parallel()
fs := NewMemMapFs() fs := NewMemMapFs()
const file = "/hello" const file = "hello"
if err := fs.Mkdir(file, 0700); err != nil { if err := fs.Mkdir(file, 0700); err != nil {
t.Fatal(err) t.Fatal(err)
} }