diff --git a/tests/specs/web/context/eventhandlerBeanTest.cfc b/tests/specs/web/context/eventhandlerBeanTest.cfc
index bf6f95984..348b17cdf 100755
--- a/tests/specs/web/context/eventhandlerBeanTest.cfc
+++ b/tests/specs/web/context/eventhandlerBeanTest.cfc
@@ -15,7 +15,7 @@
this.ehbean.init( this.instance.invocationPath );
for ( var thisKey in this.instance ) {
- evaluate( "this.ehBean.set#thisKey#( this.instance[ thisKey ] )" );
+ invoke( this.ehBean, "set#thisKey#", [ this.instance[ thisKey ] ] );
}
diff --git a/tests/specs/web/context/exceptionBeanTest.cfc b/tests/specs/web/context/exceptionBeanTest.cfc
index 20c9cc9cc..3184125fe 100755
--- a/tests/specs/web/context/exceptionBeanTest.cfc
+++ b/tests/specs/web/context/exceptionBeanTest.cfc
@@ -58,14 +58,6 @@
-
-
- for ( key in this.instance ) {
- evaluate( "this.e.get#key#()" );
- }
-
-
-
assertTrue( isStruct( this.e.getMemento() ) );
@@ -169,4 +161,3 @@
-