Small fixes on Proxy constructor tests

This commit is contained in:
Leonardo Balter 2015-07-31 17:03:02 -04:00
parent 258d2124ab
commit fbf3b89870
2 changed files with 2 additions and 5 deletions

View File

@ -25,4 +25,4 @@ assert.sameValue(
typeof p1, typeof p1,
'object', 'object',
'Return a newly created Object' 'Return a newly created Object'
); );

View File

@ -14,9 +14,6 @@ description: >
---*/ ---*/
assert.throws(TypeError, function() { assert.throws(TypeError, function() {
Proxy(); Proxy({}, {});
}); });
assert.throws(TypeError, function() {
Proxy([]);
});