Fix CE drift (#27697)

This commit is contained in:
Violet Hynes
2024-07-04 14:46:14 -04:00
committed by GitHub
parent 1b794a5579
commit f55cc0b384

View File

@@ -1,22 +0,0 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package benchhelpers
import (
"testing"
testinginterface "github.com/mitchellh/go-testing-interface"
)
type tbWrapper struct {
testing.TB
}
func (b tbWrapper) Parallel() {
// no-op
}
func TBtoT(tb testing.TB) testinginterface.T {
return tbWrapper{tb}
}