Remove redundant test

This commit is contained in:
Mike Pennisi 2015-06-15 14:18:00 -04:00
parent 6f22dad152
commit a3081bd108
1 changed files with 0 additions and 5 deletions

View File

@ -13,8 +13,3 @@ description: Promise prototype exists
if (Promise.prototype === undefined) { if (Promise.prototype === undefined) {
$ERROR("Expected Promise.prototype to be defined."); $ERROR("Expected Promise.prototype to be defined.");
} }
if (!(Promise.prototype instanceof Object)) {
$ERROR("Expected Promise.prototype to be an object.");
}