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