Skip to content

Commit da03e45

Browse files
committed
some renaming
1 parent c776a42 commit da03e45

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/specs/integration/EventExecutionsSpec.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ component extends="tests.resources.BaseIntegrationTest" {
3939
} );
4040
} );
4141

42-
xstory( "I want to execute a global invalid event handler", function(){
42+
story( "I want to execute a global invalid event handler", function(){
4343
given( "an invalid event", function(){
4444
then( "it should fire the global invalid event handler", function(){
4545
var e = this.get( "does.not.exist" );
@@ -56,8 +56,8 @@ component extends="tests.resources.BaseIntegrationTest" {
5656
renderResults = true,
5757
withExceptionHandling = true
5858
);
59-
expecT( e.getPrivateValue( "exception" ).getType() ).toBe( "CustomException" );
60-
expecT( e.getPrivateValue( "exception" ).getMessage() ).toInclude( "Whoops" );
59+
expect( e.getPrivateValue( "exception" ).getType() ).toBe( "CustomException" );
60+
expect( e.getPrivateValue( "exception" ).getMessage() ).toInclude( "Whoops" );
6161
expect( getNativeStatusCode() ).toBe( 500 );
6262
} );
6363
} );

0 commit comments

Comments
 (0)