filetransfer.spec.6 was failing in 4.x branch of iOS because -1 was returned.

This commit is contained in:
Jesse MacFadyen
2015-11-03 22:14:55 -08:00
parent 43eeef8e44
commit c5d92726c2
+1 -1
View File
@@ -176,7 +176,7 @@ exports.defineAutoTests = function () {
if (isIE) {
expect(event.total).toBe(Math.pow(2, 64));
} else {
expect(event.total).toBe(0);
expect(event.total).toBeLessThan(1);
}
}
};