Fix type in mount_windows.go

This commit is contained in:
Manu Gupta 2022-04-23 20:26:23 -07:00
parent 5a6cccc556
commit 08ef11029f

View File

@ -370,7 +370,7 @@ func TestMountUnmount(t *testing.T) {
}
if runtime.GOOS != "windows" {
// skip this check in windows since the "bind mount" logic is implemented differently in mount_wiondows.go
// skip this check in windows since the "bind mount" logic is implemented differently in mount_windows.go
if _, err := os.Stat(path); err != nil {
if os.IsNotExist(err) {
t.Errorf("SetUp() failed, volume path not created: %s", path)