d0e2badbae
The result will still pass gofmtcheck and won't trigger additional changes if someone isn't using goimports, but it will avoid the piecemeal imports changes we've been seeing.
10 lines
175 B
Go
10 lines
175 B
Go
// +build !enterprise
|
|
|
|
package vault
|
|
|
|
import testing "github.com/mitchellh/go-testing-interface"
|
|
|
|
func NewTestSeal(testing.T, *TestSealOpts) Seal {
|
|
return NewDefaultSeal()
|
|
}
|