moby/internal/testutils/netnsutils/context_windows.go
Sebastiaan van Stijn 05deecaa45
internal/testutils/netnsutils: move utils that were not used on Windows
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-08-11 15:00:30 +02:00

8 lines
148 B
Go

package netnsutils
import "testing"
// SetupTestOSContext is a no-op on Windows.
func SetupTestOSContext(*testing.T) func() {
return func() {}
}