From f82d9b799133c01b1eb10844213b3531c6dc74cc Mon Sep 17 00:00:00 2001 From: Danny Canter Date: Thu, 22 Jun 2023 20:05:34 -0700 Subject: [PATCH] Integration: Align empty IO func on Windows I think NullIO is fine on Windows now. We have it as an option in ctr and it's used for the pod sandbox container in CRI. Lets see if CI agrees.. Signed-off-by: Danny Canter --- integration/client/container_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/integration/client/container_test.go b/integration/client/container_test.go index a59800860..45d6e5781 100644 --- a/integration/client/container_test.go +++ b/integration/client/container_test.go @@ -53,11 +53,6 @@ import ( ) func empty() cio.Creator { - // TODO (@mlaventure) windows searches for pipes - // when none are provided - if runtime.GOOS == "windows" { - return cio.NewCreator(cio.WithStdio, cio.WithTerminal) - } return cio.NullIO }