Merge pull request #46396 from thaJeztah/fix_duplicate_definition

libnetwork/osl: remove dead code
This commit is contained in:
Sebastiaan van Stijn 2023-09-04 15:06:58 +02:00 committed by GitHub
commit 4bf1a946f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}