From 931cc96b8d49309420905aff64df573238a52151 Mon Sep 17 00:00:00 2001 From: "guangli.bao" Date: Wed, 24 May 2023 14:54:22 +0800 Subject: [PATCH] remote windows condition when #116693 is merged Signed-off-by: guangli.bao --- .../volume/attachdetach/reconciler/reconciler_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go b/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go index 47f8631c656..2110f66fa5e 100644 --- a/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go +++ b/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go @@ -19,7 +19,6 @@ package reconciler import ( "context" "fmt" - goruntime "runtime" "testing" "time" @@ -691,10 +690,6 @@ func Test_Run_UpdateNodeStatusFailBeforeOneVolumeDetachNodeWithReadWriteOnce(t * } func Test_Run_OneVolumeDetachFailNodeWithReadWriteOnce(t *testing.T) { - // TODO: Remove skip once https://github.com/kubernetes/kubernetes/issues/116693 is fixed. - if goruntime.GOOS == "windows" { - t.Skip("Skipping test on Windows.") - } // Arrange volumePluginMgr, _ := volumetesting.GetTestVolumePluginMgr(t) dsw := cache.NewDesiredStateOfWorld(volumePluginMgr)