From 945015017128b66a0930e00675f91993ae75eb8e Mon Sep 17 00:00:00 2001 From: pippellia-btc Date: Wed, 11 Jun 2025 15:50:37 +0200 Subject: [PATCH] changed redis address in tests --- tests/e2e/e2e_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/e2e_test.go b/tests/e2e/e2e_test.go index 990f2f0..466ed2a 100644 --- a/tests/e2e/e2e_test.go +++ b/tests/e2e/e2e_test.go @@ -24,7 +24,7 @@ func TestWalks(t *testing.T) { fmt.Println("Testing the walks consistency") fmt.Printf("-----------------------------\n\n") - db := redb.New(&redis.Options{Addr: "localhost:6380"}) + db := redb.New(&redis.Options{Addr: "localhost:6379"}) var iteration int var limit int = 10000 @@ -80,7 +80,7 @@ func TestPagerank(t *testing.T) { fmt.Println("---------------------------------") fmt.Println("Testing the pagerank distribution") - db := redb.New(&redis.Options{Addr: "localhost:6380"}) + db := redb.New(&redis.Options{Addr: "localhost:6379"}) nodes, err := db.AllNodes(ctx) if err != nil { t.Fatal(err)