Remove duplicate test

This commit is contained in:
Richard Gibson 2018-09-23 22:54:47 -04:00 committed by Rick Waldron
parent 950d58a7ca
commit 61fdc701fa
2 changed files with 7 additions and 21 deletions

View File

@ -3,11 +3,15 @@
/*---
es5id: 15.12.3_4-1-2
description: JSON.stringify a circular object throws a TypeError
description: JSON.stringify a indirectly circular object throws a error
---*/
var obj = {};
obj.prop = obj;
var obj = {
p1: {
p2: {}
}
};
obj.p1.p2.prop = obj;
assert.throws(TypeError, function() {
JSON.stringify(obj);

View File

@ -1,18 +0,0 @@
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.12.3_4-1-3
description: JSON.stringify a indirectly circular object throws a error
---*/
var obj = {
p1: {
p2: {}
}
};
obj.p1.p2.prop = obj;
assert.throws(TypeError, function() {
JSON.stringify(obj);
});