diff --git a/test/config/excludelist.xml b/test/config/excludelist.xml
index af58629310d857151606290064bad958e62d224f..fb8fc362db887128ad83e9666cc50184c3101fb6 100644
--- a/test/config/excludelist.xml
+++ b/test/config/excludelist.xml
@@ -123,8 +123,6 @@
   
   <test id="S15.5.4.10_A1_T3">https://bugs.ecmascript.org/show_bug.cgi?id=23</test>
   
-  <test id="S8.6.2_A5_T1">https://bugs.ecmascript.org/show_bug.cgi?id=24</test>
-  
   <test id="S12.6.4_A14_T1">https://bugs.ecmascript.org/show_bug.cgi?id=25</test>
   
   <test id="S15.5.4.8_A1_T11">https://bugs.ecmascript.org/show_bug.cgi?id=30</test>  
diff --git a/test/suite/sputnik/Conformance/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T1.js b/test/suite/sputnik/Conformance/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T1.js
index 33073d2217cfd88c785195a0d5144c2320fb0bd4..cf91601da8eb11d2529513946b9d8f90f49a096a 100644
--- a/test/suite/sputnik/Conformance/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T1.js
+++ b/test/suite/sputnik/Conformance/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T1.js
@@ -6,26 +6,26 @@
 * @section: 8.6.2, 13.1, 13.2;
 * @assertion: [[Call]] executes code associated with the object;
 * @description: Call function-property of object, property defined
-*  as screen = {touch:function(){count++}};
+*  as testScreen = {touch:function(){count++}};
 */
 
 this.count=0;
 
-var screen = {touch:function(){count++}};
+var testScreen = {touch:function(){count++}};
 //////////////////////////////////////////////////////////////////////////////
 //CHECK#1
-screen.touch();
+testScreen.touch();
 if (count !==1) {
-  $ERROR('#1: this.count=0; screen = {touch:function(){count++}}; screen.touch(); count === 1. Actual: ' + (count));
+  $ERROR('#1: this.count=0; testScreen = {touch:function(){count++}}; testScreen.touch(); count === 1. Actual: ' + (count));
 }
 //
 //////////////////////////////////////////////////////////////////////////////
 
 //////////////////////////////////////////////////////////////////////////////
 //CHECK#2
-screen['touch']();
+testScreen['touch']();
 if (count !==2) {
-  $ERROR('#2: this.count=0; screen = {touch:function(){count++}}; screen.touch(); screen[\'touch\'](); count === 2. Actual: ' + (count));
+  $ERROR('#2: this.count=0; testScreen = {touch:function(){count++}}; testScreen.touch(); testScreen[\'touch\'](); count === 2. Actual: ' + (count));
 }
 //
 //////////////////////////////////////////////////////////////////////////////