Ver código fonte

Merge pull request #46396 from thaJeztah/fix_duplicate_definition

libnetwork/osl: remove dead code
Sebastiaan van Stijn 1 ano atrás
pai
commit
4bf1a946f9
1 arquivos alterados com 0 adições e 18 exclusões
  1. 0 18
      libnetwork/osl/sandbox_unsupported_test.go

+ 0 - 18
libnetwork/osl/sandbox_unsupported_test.go

@@ -1,18 +0,0 @@
-//go:build !linux
-
-package osl
-
-import (
-	"errors"
-	"testing"
-)
-
-var ErrNotImplemented = errors.New("not implemented")
-
-func newKey(t *testing.T) (string, error) {
-	return "", ErrNotImplemented
-}
-
-func verifySandbox(t *testing.T, ns *Namespace) {
-	return
-}