Skip to content

Commit

Permalink
Remove extra lines
Browse files Browse the repository at this point in the history
  • Loading branch information
pjanotti committed Mar 22, 2021
1 parent 8ea6abb commit 8a99790
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion service/defaultcomponents/default_exporters_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ func verifyExporterLifecycle(t *testing.T, factory component.ExporterFactory, ge

secondExp, err := createFn(ctx, expCreateParams, getConfigFn())
require.NoError(t, err)

require.NoError(t, secondExp.Start(ctx, host))
require.NoError(t, secondExp.Shutdown(ctx))
}
Expand Down
1 change: 0 additions & 1 deletion service/defaultcomponents/default_extensions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ func verifyExtensionLifecycle(t *testing.T, factory component.ExtensionFactory,

secondExt, err := factory.CreateExtension(ctx, extCreateParams, getConfigFn())
require.NoError(t, err)

require.NoError(t, secondExt.Start(ctx, host))
require.NoError(t, secondExt.Shutdown(ctx))
}
Expand Down
1 change: 0 additions & 1 deletion service/defaultcomponents/default_processors_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ func verifyProcessorLifecycle(t *testing.T, factory component.ProcessorFactory,

secondExp, err := createFn(ctx, processorCreateParams, getConfigFn())
require.NoError(t, err)

require.NoError(t, secondExp.Start(ctx, host))
require.NoError(t, secondExp.Shutdown(ctx))
}
Expand Down
1 change: 0 additions & 1 deletion service/defaultcomponents/default_receivers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ func verifyReceiverLifecycle(t *testing.T, factory component.ReceiverFactory, ge

secondRcvr, err := createFn(ctx, receiverCreateParams, getConfigFn())
require.NoError(t, err)

require.NoError(t, secondRcvr.Start(ctx, host))
require.NoError(t, secondRcvr.Shutdown(ctx))
}
Expand Down

0 comments on commit 8a99790

Please sign in to comment.