@@ -449,16 +449,16 @@ test("event return values (github issue #12) ", function() {
449449 equals ( fsm . current , 'stopped' , "initial state should be stopped" ) ;
450450
451451 equals ( fsm . prepare ( ) , StateMachine . Result . SUCCEEDED , "expected event to have SUCCEEDED" ) ;
452- equals ( fsm . current , 'ready' , "prepare event should transition from stopped to ready" ) ;
452+ equals ( fsm . current , 'ready' , "prepare event should transition from stopped to ready" ) ;
453453
454454 equals ( fsm . fake ( ) , StateMachine . Result . CANCELLED , "expected event to have been CANCELLED" ) ;
455- equals ( fsm . current , 'ready' , "cancelled event should not cause a transition" ) ;
455+ equals ( fsm . current , 'ready' , "cancelled event should not cause a transition" ) ;
456456
457457 equals ( fsm . start ( ) , StateMachine . Result . ASYNC , "expected event to cause an ASYNC transition" ) ;
458- equals ( fsm . current , 'ready' , "async transition hasn't happened yet" ) ;
458+ equals ( fsm . current , 'ready' , "async transition hasn't happened yet" ) ;
459459
460460 equals ( fsm . transition ( ) , StateMachine . Result . SUCCEEDED , "expected async transition to have SUCCEEDED" ) ;
461- equals ( fsm . current , 'running' , "async transition should now be complete" ) ;
461+ equals ( fsm . current , 'running' , "async transition should now be complete" ) ;
462462
463463} ) ;
464464
0 commit comments