diff options
author | Valery Piashchynski <[email protected]> | 2020-11-30 14:50:35 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-30 14:50:35 +0300 |
commit | 0a5116e9dcce76c8f845f4fdda41d448f3e38955 (patch) | |
tree | 0c81d9d509edc40c2988e038a5412ca3409e29ee /plugins/http/tests/http_test.go | |
parent | a7f1952bc80f28985dde7da6446342a774464e24 (diff) | |
parent | d6e7b554ab56ee1f423ce915cc9dbb132457d689 (diff) |
Merge pull request #420 from spiral/plugin/static
[RR2] Plugin for serving static files [Static]
Diffstat (limited to 'plugins/http/tests/http_test.go')
-rw-r--r-- | plugins/http/tests/http_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/http/tests/http_test.go b/plugins/http/tests/http_test.go index ed98d17e..71859937 100644 --- a/plugins/http/tests/http_test.go +++ b/plugins/http/tests/http_test.go @@ -885,9 +885,9 @@ func TestHttpEchoErr(t *testing.T) { controller := gomock.NewController(t) mockLogger := mocks.NewMockLogger(controller) - mockLogger.EXPECT().Info("response received", "elapsed", gomock.Any(), "remote address", "127.0.0.1") + mockLogger.EXPECT().Debug("http handler response received", "elapsed", gomock.Any(), "remote address", "127.0.0.1") mockLogger.EXPECT().Debug("WORLD", "pid", gomock.Any()) - mockLogger.EXPECT().Info("worker event received", "event", roadrunner.EventWorkerLog, "worker state", gomock.Any()) + mockLogger.EXPECT().Debug("worker event received", "event", roadrunner.EventWorkerLog, "worker state", gomock.Any()) err = cont.RegisterAll( cfg, |