diff options
author | Valery Piashchynski <[email protected]> | 2021-06-24 15:31:15 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-06-24 15:31:15 +0300 |
commit | fdff0ffe41b45d0e919eccc683104987898a4faf (patch) | |
tree | 79b242b1af7d283eedfb0ac124e48c5fa47ef461 /tests/plugins/broadcast/broadcast_plugin_test.go | |
parent | ce53a8e149b76f15e8a5dd88ac3b953798d57e8b (diff) |
- Add Clear method to the storages
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'tests/plugins/broadcast/broadcast_plugin_test.go')
-rw-r--r-- | tests/plugins/broadcast/broadcast_plugin_test.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/plugins/broadcast/broadcast_plugin_test.go b/tests/plugins/broadcast/broadcast_plugin_test.go index 2cd4b451..0ec813f3 100644 --- a/tests/plugins/broadcast/broadcast_plugin_test.go +++ b/tests/plugins/broadcast/broadcast_plugin_test.go @@ -205,7 +205,8 @@ func TestBroadcastSameSubscriber(t *testing.T) { cfg, &broadcast.Plugin{}, &rpcPlugin.Plugin{}, - mockLogger, + &logger.ZapLogger{}, + // mockLogger, &server.Plugin{}, &redis.Plugin{}, &websockets.Plugin{}, @@ -314,7 +315,8 @@ func TestBroadcastSameSubscriberGlobal(t *testing.T) { cfg, &broadcast.Plugin{}, &rpcPlugin.Plugin{}, - mockLogger, + &logger.ZapLogger{}, + // mockLogger, &server.Plugin{}, &redis.Plugin{}, &websockets.Plugin{}, |