summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/call/S15.3.4.4_A16.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/call/S15.3.4.4_A16.js')
-rw-r--r--test/built-ins/Function/prototype/call/S15.3.4.4_A16.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Function/prototype/call/S15.3.4.4_A16.js b/test/built-ins/Function/prototype/call/S15.3.4.4_A16.js
index 383666a13..2bde783dd 100644
--- a/test/built-ins/Function/prototype/call/S15.3.4.4_A16.js
+++ b/test/built-ins/Function/prototype/call/S15.3.4.4_A16.js
@@ -17,7 +17,7 @@ if (typeof re === 'function') {
try {
Function.prototype.bind.call(re, undefined);
$ERROR('#1: If IsCallable(func) is false, ' +
- 'then (bind should) throw a TypeError exception');
+ 'then (bind should) throw a TypeError exception');
} catch (e) {
if (!(e instanceof TypeError)) {
$ERROR('#1: TypeError expected. Actual: ' + e);