@@ -142,10 +142,10 @@ describe('ReactEventEmitter', function() {
142142 it ( 'should not invoke handlers if ReactEventEmitter is disabled' , function ( ) {
143143 registerSimpleTestHandler ( ) ;
144144 ReactEventEmitter . setEnabled ( false ) ;
145- ReactTestUtils . Simulate . click ( CHILD ) ;
145+ ReactTestUtils . SimulateNative . click ( CHILD ) ;
146146 expect ( LISTENER . mock . calls . length ) . toBe ( 0 ) ;
147147 ReactEventEmitter . setEnabled ( true ) ;
148- ReactTestUtils . Simulate . click ( CHILD ) ;
148+ ReactTestUtils . SimulateNative . click ( CHILD ) ;
149149 expect ( LISTENER . mock . calls . length ) . toBe ( 1 ) ;
150150 } ) ;
151151
@@ -312,11 +312,11 @@ describe('ReactEventEmitter', function() {
312312 ON_TOUCH_TAP_KEY ,
313313 recordID . bind ( null , getID ( CHILD ) )
314314 ) ;
315- ReactTestUtils . Simulate . touchStart (
315+ ReactTestUtils . SimulateNative . touchStart (
316316 CHILD ,
317317 ReactTestUtils . nativeTouchData ( 0 , 0 )
318318 ) ;
319- ReactTestUtils . Simulate . touchEnd (
319+ ReactTestUtils . SimulateNative . touchEnd (
320320 CHILD ,
321321 ReactTestUtils . nativeTouchData ( 0 , 0 )
322322 ) ;
@@ -330,11 +330,11 @@ describe('ReactEventEmitter', function() {
330330 ON_TOUCH_TAP_KEY ,
331331 recordID . bind ( null , getID ( CHILD ) )
332332 ) ;
333- ReactTestUtils . Simulate . touchStart (
333+ ReactTestUtils . SimulateNative . touchStart (
334334 CHILD ,
335335 ReactTestUtils . nativeTouchData ( 0 , 0 )
336336 ) ;
337- ReactTestUtils . Simulate . touchEnd (
337+ ReactTestUtils . SimulateNative . touchEnd (
338338 CHILD ,
339339 ReactTestUtils . nativeTouchData ( 0 , tapMoveThreshold - 1 )
340340 ) ;
@@ -348,11 +348,11 @@ describe('ReactEventEmitter', function() {
348348 ON_TOUCH_TAP_KEY ,
349349 recordID . bind ( null , getID ( CHILD ) )
350350 ) ;
351- ReactTestUtils . Simulate . touchStart (
351+ ReactTestUtils . SimulateNative . touchStart (
352352 CHILD ,
353353 ReactTestUtils . nativeTouchData ( 0 , 0 )
354354 ) ;
355- ReactTestUtils . Simulate . touchEnd (
355+ ReactTestUtils . SimulateNative . touchEnd (
356356 CHILD ,
357357 ReactTestUtils . nativeTouchData ( 0 , tapMoveThreshold + 1 )
358358 ) ;
@@ -415,11 +415,11 @@ describe('ReactEventEmitter', function() {
415415 ON_TOUCH_TAP_KEY ,
416416 recordID . bind ( null , getID ( GRANDPARENT ) )
417417 ) ;
418- ReactTestUtils . Simulate . touchStart (
418+ ReactTestUtils . SimulateNative . touchStart (
419419 CHILD ,
420420 ReactTestUtils . nativeTouchData ( 0 , 0 )
421421 ) ;
422- ReactTestUtils . Simulate . touchEnd (
422+ ReactTestUtils . SimulateNative . touchEnd (
423423 CHILD ,
424424 ReactTestUtils . nativeTouchData ( 0 , 0 )
425425 ) ;
0 commit comments