diff --git a/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-boolean-primitive.js b/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-boolean-primitive.js deleted file mode 100644 index 55c07c2a91..0000000000 --- a/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-boolean-primitive.js +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2012 Ecma International. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/*--- -esid: sec-object.seal -description: > - Object.seal does not throw TypeError if type of first param is - a boolean primitive -info: | - If Type(O) is not Object, return O. ----*/ - - -Object.seal(false); diff --git a/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-number-primitive.js b/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-number-primitive.js deleted file mode 100644 index ebedce1455..0000000000 --- a/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-number-primitive.js +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright (c) 2012 Ecma International. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/*--- -esid: sec-object.seal -description: > - Object.seal does not throw TypeError if type of first param is - a number primitive -info: | - If Type(O) is not Object, return O. ----*/ -Object.seal(0); diff --git a/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-string-primitive.js b/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-string-primitive.js deleted file mode 100644 index 689691f73f..0000000000 --- a/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-string-primitive.js +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright (c) 2012 Ecma International. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/*--- -esid: sec-object.seal -description: > - Object.seal does not throw TypeError if type of first param is - a string primitive -info: | - If Type(O) is not Object, return O. ----*/ - -Object.seal("abc"); diff --git a/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-null.js b/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-null.js deleted file mode 100644 index f10616494e..0000000000 --- a/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-null.js +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright (c) 2012 Ecma International. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/*--- -esid: sec-object.seal -description: > - Object.seal does not throw TypeError if type of first param is - null -info: | - If Type(O) is not Object, return O. ----*/ - -Object.seal(null); diff --git a/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-undefined.js b/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-undefined.js deleted file mode 100644 index 39e7511066..0000000000 --- a/test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-undefined.js +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright (c) 2012 Ecma International. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/*--- -esid: sec-object.seal -description: > - Object.seal does not throw TypeError if type of first param is - undefined -info: | - If Type(O) is not Object, return O. ----*/ - -Object.seal(undefined);