summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T1.js')
-rw-r--r--test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T1.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T1.js b/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T1.js
index 3c0ff7998..cae54c1da 100644
--- a/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T1.js
+++ b/test/built-ins/Array/prototype/splice/S15.4.4.12_A6.1_T1.js
@@ -13,13 +13,13 @@ var a = [0, 1, 2];
a.splice(1, 2, 4);
if (a.length !== 2) {
- $ERROR("Expected a.length === 2, actually " + a.length);
+ $ERROR("Expected a.length === 2, actually " + a.length);
}
if (a[0] !== 0) {
- $ERROR("Expected a[0] === 0, actually " + a[0]);
+ $ERROR("Expected a[0] === 0, actually " + a[0]);
}
if (a[1] !== 4) {
- $ERROR("Expected a[1] === 4, actually " + a[1]);
+ $ERROR("Expected a[1] === 4, actually " + a[1]);
}