Skip to content

Commit 1e91445

Browse files
vincentriemerfacebook-github-bot
authored andcommitted
Fix incorrect pointer event name in move test
Summary: Changelog: [RNTester][Internal] - Fix incorrect pointer event name in move test We recently removed the '2' suffix from certain pointer event names and I forgot to update this test. Reviewed By: lunaleaps Differential Revision: D37857862 fbshipit-source-id: 6f37dce139772cd16d663961dbcbbf68dde83101
1 parent 1eebbbc commit 1e91445

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/rn-tester/js/examples/Experimental/W3CPointerEventPlatformTests/PointerEventPointerMove.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function PointerEventPointerMoveTestCase(
2828
const testPointerMove = harness.useAsyncTest('pointermove event recieved');
2929

3030
const handlers = useTestEventHandler(
31-
['pointerMove2'],
31+
['pointerMove'],
3232
(event: PointerEvent) => {
3333
detectedPointerTypesRef.current[event.nativeEvent.pointerType] = true;
3434
testPointerMove.done();

0 commit comments

Comments
 (0)