From 08ef11029f1d3842ba47276a113dfab6357de6d8 Mon Sep 17 00:00:00 2001 From: Manu Gupta Date: Sat, 23 Apr 2022 20:26:23 -0700 Subject: [PATCH] Fix type in mount_windows.go --- pkg/volume/local/local_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/volume/local/local_test.go b/pkg/volume/local/local_test.go index 267987d99b8..e9d6b19de68 100644 --- a/pkg/volume/local/local_test.go +++ b/pkg/volume/local/local_test.go @@ -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)