This is an automated email from the ASF dual-hosted git repository.
maplefu pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks.git
The following commit(s) were added to refs/heads/unstable by this push:
new 0329170d fix(test): remove meaningless `list-max-ziplist-size` (#2517)
0329170d is described below
commit 0329170d60d67a5f0f62ee565a1a14f0bbfb81da
Author: SiLe Zhou <[email protected]>
AuthorDate: Mon Sep 2 12:34:21 2024 +0800
fix(test): remove meaningless `list-max-ziplist-size` (#2517)
---
tests/gocase/unit/type/list/list_test.go | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/tests/gocase/unit/type/list/list_test.go
b/tests/gocase/unit/type/list/list_test.go
index a2234626..79f7b360 100644
--- a/tests/gocase/unit/type/list/list_test.go
+++ b/tests/gocase/unit/type/list/list_test.go
@@ -42,9 +42,7 @@ var largeValue = map[string]string{
}
func TestLTRIM(t *testing.T) {
- srv := util.StartServer(t, map[string]string{
- "list-max-ziplist-size": "4",
- })
+ srv := util.StartServer(t, map[string]string{})
defer srv.Close()
ctx := context.Background()
rdb := srv.NewClient()
@@ -87,9 +85,7 @@ func TestLTRIM(t *testing.T) {
}
func TestZipList(t *testing.T) {
- srv := util.StartServer(t, map[string]string{
- "list-max-ziplist-size": "16",
- })
+ srv := util.StartServer(t, map[string]string{})
defer srv.Close()
ctx := context.Background()
rdb := srv.NewClientWithOption(&redis.Options{