Fix test for TypedArray.prototype.forEach

This commit is contained in:
Leonardo Balter 2016-04-21 12:58:37 -04:00 committed by Mike Pennisi
parent ba3dacbe5a
commit bc8ae6e0ae
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ testWithTypedArrayConstructors(function(TA) {
var called = 0; var called = 0;
var result1 = new TA().forEach(function() { var result1 = new TA().forEach(function() {
calls++; called++;
}); });
assert.sameValue(called, 0); assert.sameValue(called, 0);