open-vault/vault/seal_testing_util.go
Jim Kalafut d0e2badbae Run goimports across the repository (#6010)
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.
2019-01-08 16:48:57 -08:00

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()
}