summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/json2.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/json2.js')
-rw-r--r--deps/v8/test/mjsunit/json2.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/test/mjsunit/json2.js b/deps/v8/test/mjsunit/json2.js
index d3cd3d5d84..f56fd43f58 100644
--- a/deps/v8/test/mjsunit/json2.js
+++ b/deps/v8/test/mjsunit/json2.js
@@ -180,11 +180,11 @@ Object.defineProperty(non_enum, "b", { value: 2, enumerable: false });
non_enum.c = 3;
TestStringify('{"a":1,"c":3}', non_enum);
-var str = "external_string";
+var str = "external";
try {
externalizeString(str, true);
} catch (e) { }
-TestStringify("\"external_string\"", str, null, 0);
+TestStringify("\"external\"", str, null, 0);
var o = {};
o.somespecialproperty = 10;