diff options
author | Valery Piashchynski <[email protected]> | 2021-06-24 14:37:14 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-06-24 14:37:14 +0300 |
commit | 64d41f6d87bb8002e700cdcddb5a3a241e4a2a7d (patch) | |
tree | 97f67cc1f1710a56e98bb8fc326d41e24431b559 | |
parent | 28f8182ab27dddbe9d432586aab83aa398432b16 (diff) |
- Update logger for the broadcast tests
Signed-off-by: Valery Piashchynski <[email protected]>
-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 31e6871d..d8bedf29 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{}, @@ -315,7 +316,8 @@ func TestBroadcastSameSubscriberGlobal(t *testing.T) { cfg, &broadcast.Plugin{}, &rpcPlugin.Plugin{}, - mockLogger, + &logger.ZapLogger{}, + // mockLogger, &server.Plugin{}, &redis.Plugin{}, &websockets.Plugin{}, |