summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js')
-rw-r--r--test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js b/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js
index ef2c7b26c..968e66738 100644
--- a/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js
+++ b/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A1_T8.js
@@ -9,6 +9,6 @@ description: Call toLocaleUpperCase() function of Infinity
Number.prototype.toLocaleUpperCase = String.prototype.toLocaleUpperCase;
-if (Infinity.toLocaleUpperCase() !== "INFINITY") {
- $ERROR('#1: Number.prototype.toLocaleUpperCase = String.prototype.toLocaleUpperCase; Infinity.toLocaleUpperCase()=== "INFINITY". Actual: ' + Infinity.toLocaleUpperCase());
+if (Infinity.toLocaleUpperCase()!== "INFINITY") {
+ $ERROR('#1: Number.prototype.toLocaleUpperCase = String.prototype.toLocaleUpperCase; Infinity.toLocaleUpperCase()=== "INFINITY". Actual: '+Infinity.toLocaleUpperCase());
}