From 0b33a442ac9839a6c8209ee78bf6db0f194be240 Mon Sep 17 00:00:00 2001 From: 1Copenut Date: Thu, 10 Aug 2023 10:12:06 -0500 Subject: [PATCH] Adjusting a test param I switched accidentally while updating types. --- .../common/components/drag_and_drop/draggable_wrapper.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/security_solution/public/common/components/drag_and_drop/draggable_wrapper.test.tsx b/x-pack/plugins/security_solution/public/common/components/drag_and_drop/draggable_wrapper.test.tsx index 35ebe687843b4..2bc0ba7f1ac35 100644 --- a/x-pack/plugins/security_solution/public/common/components/drag_and_drop/draggable_wrapper.test.tsx +++ b/x-pack/plugins/security_solution/public/common/components/drag_and_drop/draggable_wrapper.test.tsx @@ -279,7 +279,7 @@ describe('ConditionalPortal', () => { it('returns a style with a transitionDuration when the snapshot is drop animating', () => { const snapshot: DraggableStateSnapshot = { isDragging: true, - isDropAnimating: false, // <-- NOT drop animating + isDropAnimating: true, // <-- it is drop animating isClone: false, dropAnimation: null, draggingOver: null,