refactor(core): remove cosmos-db dependency (#18848)

This commit is contained in:
Marko
2023-12-21 14:31:46 +00:00
committed by GitHub
parent f9f92117b6
commit 6649bb7d8f
16 changed files with 215 additions and 175 deletions
+2 -2
View File
@@ -362,11 +362,11 @@ type testStoreService struct {
}
func (t testStoreService) OpenKVStore(context.Context) store.KVStore {
return t.db
return testkv.TestStore{Db: t.db}
}
func (t testStoreService) OpenMemoryStore(context.Context) store.KVStore {
return t.db
return testkv.TestStore{Db: t.db}
}
func TestGetBackendResolver(t *testing.T) {