Skip to content

Commit

Permalink
resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Dec 16, 2024
1 parent 8ad2ace commit eb148b0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 242 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Every module contains its own CHANGELOG.md. Please refer to the module you are i
* (crypto/keyring) [#21653](https://github.com/cosmos/cosmos-sdk/pull/21653) New Linux-only backend that adds Linux kernel's `keyctl` support.
* (client/keys) [#21829](https://github.com/cosmos/cosmos-sdk/pull/21829) Add support for importing hex key using standard input.
* (client) [#22807](https://github.com/cosmos/cosmos-sdk/pull/22807) Return v2 server information in the `version` command.
* (baseapp) [#22893](https://github.com/cosmos/cosmos-sdk/pull/22893) Support mount object store in baseapp, add `ObjectStore` api in context.

### Improvements

Expand Down
238 changes: 0 additions & 238 deletions store/cachekv/internal/mergeiterator.go

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package internal
package btree

import (
"testing"
)

func TestMemIterator_Ascending(t *testing.T) {
db := NewBTree()
db := NewBTree[[]byte]()
// db.set()
db.Set([]byte("a"), []byte("value_a"))
db.Set([]byte("b"), []byte("value_b"))
Expand All @@ -32,7 +32,7 @@ func TestMemIterator_Ascending(t *testing.T) {
}

func TestMemIterator_Descending(t *testing.T) {
db := NewBTree()
db := NewBTree[[]byte]()

db.Set([]byte("a"), []byte("value_a"))
db.Set([]byte("b"), []byte("value_b"))
Expand Down Expand Up @@ -60,7 +60,7 @@ func TestMemIterator_Descending(t *testing.T) {
}

func TestMemIterator_EmptyRange(t *testing.T) {
db := NewBTree()
db := NewBTree[[]byte]()
db.Set([]byte("a"), []byte("value_a"))
db.Set([]byte("b"), []byte("value_b"))
db.Set([]byte("c"), []byte("value_c"))
Expand Down

0 comments on commit eb148b0

Please sign in to comment.