Changeset 215317 in webkit


Ignore:
Timestamp:
Apr 13, 2017 1:31:54 AM (7 years ago)
Author:
Antti Koivisto
Message:

Try to unflake a test.

  • http/tests/cache/disk-cache/disk-cache-media-small.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r215315 r215317  
     12017-04-13  Antti Koivisto  <antti@apple.com>
     2
     3        Try to unflake a test.
     4
     5        * http/tests/cache/disk-cache/disk-cache-media-small.html:
     6
    172017-04-12  Brady Eidson  <beidson@apple.com>
    28
  • trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-media-small.html

    r215263 r215317  
    2828    const ranges = internals.mediaResponseContentRanges(media);
    2929    const sources = internals.mediaResponseSources(media);
    30     for (i = 0; i < ranges.length; ++i)
     30    for (i = 0; i < Math.min(2, ranges.length); ++i)
    3131        logdiv.innerHTML += `Content range: ${ranges[i]}, Response source: ${sources[i]}<br>`;
    3232}
Note: See TracChangeset for help on using the changeset viewer.