소스 검색

Merge pull request #46396 from thaJeztah/fix_duplicate_definition

libnetwork/osl: remove dead code
Sebastiaan van Stijn 1 년 전
부모
커밋
4bf1a946f9
1개의 변경된 파일0개의 추가작업 그리고 18개의 파일을 삭제
  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
-}