Fix import cycle

This commit is contained in:
Jeff Mitchell
2019-07-02 21:01:34 -04:00
parent 1db05c386d
commit 6769d11ff8
3 changed files with 21 additions and 15 deletions

View File

@@ -9,7 +9,6 @@ import (
log "github.com/hashicorp/go-hclog"
"github.com/hashicorp/vault/sdk/helper/logging"
"github.com/hashicorp/vault/sdk/logical"
)
// TestRequest is a helper to create a purely in-memory Request struct.
@@ -19,7 +18,7 @@ func TestRequest(t testing.T, op Operation, path string) *Request {
Path: path,
Data: make(map[string]interface{}),
Storage: new(InmemStorage),
Connection: &logical.Connection{},
Connection: &Connection{},
}
}