From 0e5be9f2931e4d375e8dd659f7b8ad177134e942 Mon Sep 17 00:00:00 2001 From: Cool Developer Date: Fri, 28 Jun 2024 13:49:01 -0400 Subject: [PATCH] fix tests --- store/rootmulti/store_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/rootmulti/store_test.go b/store/rootmulti/store_test.go index b3e6c83518a3..b1d517b3c19f 100644 --- a/store/rootmulti/store_test.go +++ b/store/rootmulti/store_test.go @@ -116,7 +116,7 @@ func TestCacheMultiStoreWithVersion(t *testing.T) { // require we cannot commit (write) to a cache-versioned multi-store require.Panics(t, func() { kvStore.Set(k, []byte("newValue")) - cms.Write() + kvStore.(types.CacheWrap).Write() }) }