Merge pull request #118218 from tukwila/remove_skip_windows
remove t.skip windows condition when #116693 is merged
This commit is contained in:
		@@ -19,7 +19,6 @@ package reconciler
 | 
				
			|||||||
import (
 | 
					import (
 | 
				
			||||||
	"context"
 | 
						"context"
 | 
				
			||||||
	"fmt"
 | 
						"fmt"
 | 
				
			||||||
	goruntime "runtime"
 | 
					 | 
				
			||||||
	"testing"
 | 
						"testing"
 | 
				
			||||||
	"time"
 | 
						"time"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -691,10 +690,6 @@ func Test_Run_UpdateNodeStatusFailBeforeOneVolumeDetachNodeWithReadWriteOnce(t *
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func Test_Run_OneVolumeDetachFailNodeWithReadWriteOnce(t *testing.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
 | 
						// Arrange
 | 
				
			||||||
	volumePluginMgr, _ := volumetesting.GetTestVolumePluginMgr(t)
 | 
						volumePluginMgr, _ := volumetesting.GetTestVolumePluginMgr(t)
 | 
				
			||||||
	dsw := cache.NewDesiredStateOfWorld(volumePluginMgr)
 | 
						dsw := cache.NewDesiredStateOfWorld(volumePluginMgr)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user