From e8f2798830009809c3f6763208a8e7f3eba44e29 Mon Sep 17 00:00:00 2001 From: Maribeth Moffatt Date: Mon, 15 Sep 2025 15:12:28 -0700 Subject: [PATCH] chore: remove unused ts expect error --- test/webdriverio/test/move_test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/test/webdriverio/test/move_test.ts b/test/webdriverio/test/move_test.ts index 34c38313..28f4a0c5 100644 --- a/test/webdriverio/test/move_test.ts +++ b/test/webdriverio/test/move_test.ts @@ -692,7 +692,6 @@ function getConnectionCandidate( const dragStrategy = block.getDragStrategy() as Blockly.dragging.BlockDragStrategy; if (!dragStrategy) throw new Error('no drag strategy'); - // @ts-expect-error connectionCandidate is private. const candidate = dragStrategy.connectionCandidate; if (!candidate) return null; const neighbourBlock = candidate.neighbour.getSourceBlock();