diff --git a/x-pack/plugins/security_solution/public/timelines/components/flyout/bottom_bar/index.test.tsx b/x-pack/plugins/security_solution/public/timelines/components/flyout/bottom_bar/index.test.tsx
index 366b8d36fc7d4..ec73602921048 100644
--- a/x-pack/plugins/security_solution/public/timelines/components/flyout/bottom_bar/index.test.tsx
+++ b/x-pack/plugins/security_solution/public/timelines/components/flyout/bottom_bar/index.test.tsx
@@ -27,20 +27,6 @@ describe('FlyoutBottomBar', () => {
expect(screen.getByTestId('flyoutBottomBar')).toBeInTheDocument();
});
- test('it renders the data providers drop target area', () => {
- render(
-
-
-
- );
-
- expect(screen.getByTestId('dataProviders')).toBeInTheDocument();
- });
-
test('it renders the flyout header panel', () => {
render(
@@ -55,20 +41,6 @@ describe('FlyoutBottomBar', () => {
expect(screen.getByTestId('timeline-flyout-header-panel')).toBeInTheDocument();
});
- test('it hides the data providers drop target area', () => {
- render(
-
-
-
- );
-
- expect(screen.queryByTestId('dataProviders')).not.toBeInTheDocument();
- });
-
test('it hides the flyout header panel', () => {
render(
@@ -82,18 +54,4 @@ describe('FlyoutBottomBar', () => {
expect(screen.queryByTestId('timeline-flyout-header-panel')).not.toBeInTheDocument();
});
-
- test('it renders the data providers drop target area when showDataproviders=false and tab is not query', () => {
- render(
-
-
-
- );
-
- expect(screen.getByTestId('dataProviders')).toBeInTheDocument();
- });
});