Bug 1265610 - Fixing a JS error in the tests, CLOSED TREE r=me

This commit is contained in:
Andrea Marchesini 2016-04-20 13:57:03 +02:00
Родитель fccc28a54a
Коммит eeac90b9c7
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -36,7 +36,7 @@ function create_fileList(aPath) {
}
var tests = [
function() { setup_tests(next); }
function() { setup_tests(next); },
function() { create_fileList('ProfD') },
function() { test_basic(directory, next); },

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

@ -46,7 +46,7 @@ function test_worker() {
}
var tests = [
function() { setup_tests(next); }
function() { setup_tests(next); },
create_fileList,
test_worker,