Bug 1319306 - Change onreadystatechange assertion to a minimum of 2 rather than 10, r=annevk

This commit is contained in:
Shawn Huang 2017-03-22 20:14:52 +08:00
Родитель f49ee1fdca
Коммит 1a157c53f3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -24,7 +24,7 @@ test.step(function() {
}
if (client.readyState === 4) {
assert_equals(countedLoading, 10, "LOADING state change may be emitted multiple times");
assert_greater_than(countedLoading, 1, "LOADING state change may be emitted multiple times");
test.done();
}