diff --git a/test-harness/models/formBean.cfc b/test-harness/models/formBean.cfc index fe88b2e74..bbc50bcaf 100755 --- a/test-harness/models/formBean.cfc +++ b/test-harness/models/formBean.cfc @@ -79,7 +79,7 @@ - + diff --git a/tests/specs/web/context/interceptorStateTest.cfc b/tests/specs/web/context/interceptorStateTest.cfc index a2e058038..45da4cd45 100755 --- a/tests/specs/web/context/interceptorStateTest.cfc +++ b/tests/specs/web/context/interceptorStateTest.cfc @@ -149,7 +149,7 @@ this.state.register( this.key, mockInterceptor, mockMetadata ); // Invoke - makepublic( this.state, "invokerAsync" ); + makePublic( this.state, "invokerAsync" ); assertTrue( mockInterceptor.$never( "unittest" ) ); this.state.invokerAsync( getMockRequestContext(), diff --git a/tests/specs/web/services/requestserviceTest.cfc b/tests/specs/web/services/requestserviceTest.cfc index bc1bc4d02..39d7b0beb 100755 --- a/tests/specs/web/services/requestserviceTest.cfc +++ b/tests/specs/web/services/requestserviceTest.cfc @@ -29,7 +29,7 @@ url.name = "pio majano"; url.today = today; - /* Catpure the request */ + /* Capture the request */ var context = requestService.requestCapture(); // debug(context.getCollection()); @@ -37,7 +37,7 @@ /* Tests */ try { expect( context ).toBeComponent(); - expect( url.today ).toBe( context.getValue( "today" ) ); + expect( dateCompare( url.today, context.getValue( "today" ), "s" ) ).toBe( 0, "dates should match to the second" ); expect( url.name ).toBe( context.getValue( "name" ) ); expect( context.valueExists( "event" ) ).toBeTrue(); } finally {