From c0b18dfadfb1a33c0075e7a14f8b3d292e7dacf1 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Mon, 5 Oct 2020 14:26:53 -0400 Subject: [PATCH] Cleanup --- ...f-type-of-first-param-is-a-boolean-primitive.js | 14 -------------- ...if-type-of-first-param-is-a-number-primitive.js | 12 ------------ ...if-type-of-first-param-is-a-string-primitive.js | 13 ------------- ...ow-type-error-if-type-of-first-param-is-null.js | 13 ------------- ...pe-error-if-type-of-first-param-is-undefined.js | 13 ------------- 5 files changed, 65 deletions(-) delete mode 100644 test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-boolean-primitive.js delete mode 100644 test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-number-primitive.js delete mode 100644 test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-a-string-primitive.js delete mode 100644 test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-null.js delete mode 100644 test/built-ins/Object/seal/object-seal-does-not-throw-type-error-if-type-of-first-param-is-undefined.js 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);