summaryrefslogtreecommitdiff
path: root/tests/plugins/http
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-03-13 21:37:43 +0300
committerValery Piashchynski <[email protected]>2021-03-13 21:37:43 +0300
commit903e2125991fe2c2db48fc5f687397219edc2abc (patch)
treeed99650d143974fdc16d6007acb295748ff1395a /tests/plugins/http
parent594d801d14bb394b20eec14690d1b616e2c4d56d (diff)
Fix typo Info -> Error level
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'tests/plugins/http')
-rw-r--r--tests/plugins/http/http_plugin_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/http/http_plugin_test.go b/tests/plugins/http/http_plugin_test.go
index 752bd84e..d136b437 100644
--- a/tests/plugins/http/http_plugin_test.go
+++ b/tests/plugins/http/http_plugin_test.go
@@ -708,7 +708,7 @@ func TestH2CUpgrade(t *testing.T) {
controller := gomock.NewController(t)
mockLogger := mocks.NewMockLogger(controller)
- mockLogger.EXPECT().Info("server internal stderr", "message", gomock.Any()).MinTimes(1)
+ mockLogger.EXPECT().Error("server internal error", "message", gomock.Any()).MinTimes(1)
mockLogger.EXPECT().Debug("worker destructed", "pid", gomock.Any()).MinTimes(1)
mockLogger.EXPECT().Debug("worker constructed", "pid", gomock.Any()).MinTimes(1)
mockLogger.EXPECT().Debug("worker event received", "event", events.EventWorkerLog, "worker state", gomock.Any()).MinTimes(1)