@@ -7,10 +7,10 @@ import (
77 "sync"
88 "testing"
99
10- "github.com/smartcontractkit/chainlink-common/keystore"
11- "github.com/smartcontractkit/chainlink-common/keystore/storage"
1210 "github.com/stretchr/testify/assert"
1311 "github.com/stretchr/testify/require"
12+
13+ "github.com/smartcontractkit/chainlink-common/keystore"
1414)
1515
1616func TestKeystore_CreateDeleteReadKeys (t * testing.T ) {
@@ -110,7 +110,7 @@ func TestKeystore_CreateDeleteReadKeys(t *testing.T) {
110110
111111 for _ , tt := range tt {
112112 t .Run (tt .name , func (t * testing.T ) {
113- storage := storage .NewMemoryStorage ()
113+ storage := keystore .NewMemoryStorage ()
114114 ks , err := keystore .LoadKeystore (ctx , storage , keystore.EncryptionParams {
115115 Password : "test-password" ,
116116 ScryptParams : keystore .FastScryptParams ,
@@ -162,7 +162,7 @@ func TestKeystore_ConcurrentCreateAndRead(t *testing.T) {
162162 t .Parallel ()
163163
164164 ctx := context .Background ()
165- st := storage .NewMemoryStorage ()
165+ st := keystore .NewMemoryStorage ()
166166 ks , err := keystore .LoadKeystore (ctx , st , keystore.EncryptionParams {
167167 Password : "test" ,
168168 ScryptParams : keystore .FastScryptParams ,
0 commit comments