From edaf662d509a799e5652186eb4cd09f29d8c1dd7 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Wed, 8 Mar 2023 10:01:56 +0100 Subject: [PATCH] transport/redis_pubsub/publisher_test.go: Change Publish to Write in test name. --- transport/redis_pubsub/publisher_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/redis_pubsub/publisher_test.go b/transport/redis_pubsub/publisher_test.go index ff9c3ef..3c29c52 100644 --- a/transport/redis_pubsub/publisher_test.go +++ b/transport/redis_pubsub/publisher_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" ) -func TestPublisher_Publish(t *testing.T) { +func TestPublisher_Write(t *testing.T) { client, mock := redismock.NewClientMock() pub := NewPublisher(client, Namespace{ChainID: "id"})