summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/replace/S15.5.4.11_A1_T11.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/String/prototype/replace/S15.5.4.11_A1_T11.js')
-rw-r--r--test/built-ins/String/prototype/replace/S15.5.4.11_A1_T11.js28
1 files changed, 18 insertions, 10 deletions
diff --git a/test/built-ins/String/prototype/replace/S15.5.4.11_A1_T11.js b/test/built-ins/String/prototype/replace/S15.5.4.11_A1_T11.js
index e6da57621..9957654db 100644
--- a/test/built-ins/String/prototype/replace/S15.5.4.11_A1_T11.js
+++ b/test/built-ins/String/prototype/replace/S15.5.4.11_A1_T11.js
@@ -10,19 +10,27 @@ description: >
function, that throw exception
---*/
-var __obj = {toString:function(){throw "insearchValue";}};
-var __obj2 = {toString:function(){throw "inreplaceValue";}};
+var __obj = {
+ toString: function() {
+ throw "insearchValue";
+ }
+};
+var __obj2 = {
+ toString: function() {
+ throw "inreplaceValue";
+ }
+};
var __str = "ABB\u0041BABAB";
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
- try {
- var x = __str.replace(__obj,__obj2);
- $ERROR('#1: "var x = __str.replace(__obj,__obj2)" lead to throwing exception');
- } catch (e) {
- if (e!=="insearchValue") {
- $ERROR('#1.1: Exception === "insearchValue". Actual: '+e);
- }
- }
+try {
+ var x = __str.replace(__obj, __obj2);
+ $ERROR('#1: "var x = __str.replace(__obj,__obj2)" lead to throwing exception');
+} catch (e) {
+ if (e !== "insearchValue") {
+ $ERROR('#1.1: Exception === "insearchValue". Actual: ' + e);
+ }
+}
//
//////////////////////////////////////////////////////////////////////////////