diff options
author | Valery Piashchynski <[email protected]> | 2021-07-15 00:28:11 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-07-15 00:28:11 +0300 |
commit | f4feb30197843d05eb308081ee579d3a9e3d6206 (patch) | |
tree | df1a9f9ed83830f2876d7c98c7822b8129b87be1 /tests | |
parent | 05055561600a240401f6e48e5b6c195d01050d45 (diff) |
Remove duplicated logging
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/plugins/jobs/jobs_plugin_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/plugins/jobs/jobs_plugin_test.go b/tests/plugins/jobs/jobs_plugin_test.go index f8a5c3e7..9a13435b 100644 --- a/tests/plugins/jobs/jobs_plugin_test.go +++ b/tests/plugins/jobs/jobs_plugin_test.go @@ -123,6 +123,7 @@ func TestJobsInit(t *testing.T) { mockLogger.EXPECT().Info("driver ready", "pipeline", "test-2", "start", gomock.Any(), "elapsed", gomock.Any()).Times(1) mockLogger.EXPECT().Info("driver ready", "pipeline", "test-3", "start", gomock.Any(), "elapsed", gomock.Any()).Times(1) + mockLogger.EXPECT().Info("pipeline started", "pipeline", "test-local-2", "start", gomock.Any(), "elapsed", gomock.Any()).Times(1) mockLogger.EXPECT().Info("pipeline started", "pipeline", "test-1", "start", gomock.Any(), "elapsed", gomock.Any()).Times(1) mockLogger.EXPECT().Info("pipeline started", "pipeline", "test-2-amqp", "start", gomock.Any(), "elapsed", gomock.Any()).Times(1) |