Merge pull request #403 from bocoup/fixes-proxy

Small fixes on Proxy constructor tests
This commit is contained in:
Brian Terlson 2015-08-05 11:02:26 -07:00
commit 3a7db54b3e
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([]);
});