Lint fixes

This commit is contained in:
Rick Waldron 2020-10-05 09:35:57 -04:00
parent d576baf73f
commit 20e3101105
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ info: |
7. If IsConstructor(constructor) is false, throw a TypeError exception.
...
includes: [isConstructor.js, testTypedArray.js]
features: [Reflect.construct, arrow-function]
features: [Reflect.construct, TypedArray, arrow-function]
---*/
assert.sameValue(isConstructor(TypedArray.from), false, 'isConstructor(TypedArray.from) must return false');

View File

@ -18,7 +18,7 @@ info: |
7. If IsConstructor(constructor) is false, throw a TypeError exception.
...
includes: [isConstructor.js, testTypedArray.js]
features: [Reflect.construct, arrow-function]
features: [Reflect.construct, TypedArray, arrow-function]
---*/
assert.sameValue(isConstructor(TypedArray.of), false, 'isConstructor(TypedArray.of) must return false');