Bug 1117145 - Part 6 - Fix browser_basic_functionality.js. r=jaws

This commit is contained in:
Paolo Amadini 2016-02-29 16:23:41 +00:00
Родитель 0fec3e127c
Коммит f6fcc5da79
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -49,7 +49,7 @@ add_task(function* test_basic_functionality() {
let itemCount = richlistbox.children.length;
for (let i = 0; i < itemCount; i++) {
let element = richlistbox.children[itemCount - i - 1];
let download = DownloadsView.controllerForElement(element).download;
let download = DownloadsView.itemForElement(element).download;
is(DownloadsCommon.stateOfDownload(download), DownloadData[i].state,
"Download states match up");
}