diff --git a/internal/command/command_plugin_test.go b/internal/command/command_plugin_test.go index 9fbf2233cc..f32ace4841 100644 --- a/internal/command/command_plugin_test.go +++ b/internal/command/command_plugin_test.go @@ -96,7 +96,10 @@ func TestCommandPlugin_Process(t *testing.T) { commandPlugin.Process(ctx, &bus.Message{Topic: bus.DataPlaneResponseTopic, Data: protos.OKDataPlaneResponse()}) require.Equal(t, 1, fakeCommandService.SendDataPlaneResponseCallCount()) - commandPlugin.Process(ctx, &bus.Message{Topic: bus.DataplaneHealthProcessTopic, Data: protos.GetHealthyInstanceHealth()}) + commandPlugin.Process(ctx, &bus.Message{ + Topic: bus.DataplaneHealthProcessTopic, + Data: protos.GetHealthyInstanceHealth(), + }) require.Equal(t, 1, fakeCommandService.UpdateDataPlaneHealthCallCount()) require.Equal(t, 1, fakeCommandService.SendDataPlaneResponseCallCount()) }