diff options
author | Valery Piashchynski <[email protected]> | 2021-06-05 22:26:10 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-06-05 22:26:10 +0300 |
commit | 908b2893728b812997f2b03244ab9b37d668fe3f (patch) | |
tree | 6bf5c4550ddd1db15940fea09fc1a79aa7611543 /tests/plugins/metrics/metrics_test.go | |
parent | 459e29a85fe5c8571920a602ceb8374bbb893f49 (diff) |
- Add Windows github actions
- Update tests, fix Windows issues
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'tests/plugins/metrics/metrics_test.go')
-rw-r--r-- | tests/plugins/metrics/metrics_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/metrics/metrics_test.go b/tests/plugins/metrics/metrics_test.go index 8be567ec..3e2023d4 100644 --- a/tests/plugins/metrics/metrics_test.go +++ b/tests/plugins/metrics/metrics_test.go @@ -130,7 +130,7 @@ func TestMetricsIssue571(t *testing.T) { mockLogger.EXPECT().Debug("worker destructed", "pid", gomock.Any()).AnyTimes() mockLogger.EXPECT().Debug("worker constructed", "pid", gomock.Any()).AnyTimes() mockLogger.EXPECT().Debug("Started RPC service", "address", "tcp://127.0.0.1:6001", "services", []string{"metrics"}).MinTimes(1) - mockLogger.EXPECT().Debug("200 GET http://localhost:56444/", "remote", "127.0.0.1", "elapsed", gomock.Any()).MinTimes(1) + mockLogger.EXPECT().Debug("200 GET http://localhost:56444/", "remote", gomock.Any(), "elapsed", gomock.Any()).MinTimes(1) mockLogger.EXPECT().Info("declaring new metric", "name", "test", "type", gomock.Any(), "namespace", gomock.Any()).MinTimes(1) mockLogger.EXPECT().Info("metric successfully added", "name", "test", "type", gomock.Any(), "namespace", gomock.Any()).MinTimes(1) mockLogger.EXPECT().Info("metric successfully added", "name", "test", "labels", []string{}, "value", gomock.Any()).MinTimes(1) |