Skip to content

Commit

Permalink
Fix url-format.any.js test expectations.
Browse files Browse the repository at this point in the history
It never failed, so [ Pass Failure ] didn't make sense. It does however
timeout regularly, so reduce the url_count it uses to check if blob URLs
are more or less unique by half.

And since sandboxed-iframe.html includes url-format.any.js, also turn
that test back on, since I'm pretty sure its failures were the same
timeout.

Bug: 800898, 801078
Change-Id: I90ae00190282ee8915867535dbb39aa171950245
Reviewed-on: https://chromium-review.googlesource.com/861948
Reviewed-by: Joshua Bell <[email protected]>
Commit-Queue: Joshua Bell <[email protected]>
Cr-Commit-Position: refs/heads/master@{#528802}
  • Loading branch information
mkruisselbrink authored and chromium-wpt-export-bot committed Jan 11, 2018
1 parent 89f6457 commit f04303f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FileAPI/url/url-format.any.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const blob = new Blob(['test']);
const file = new File(['test'], 'name');

test(() => {
const url_count = 10000;
const url_count = 5000;
let list = [];

for (let i = 0; i < url_count; ++i)
Expand Down

0 comments on commit f04303f

Please sign in to comment.