diff --git a/chrome/content/zotero/tools/testTranslators/testTranslators.js b/chrome/content/zotero/tools/testTranslators/testTranslators.js index c6b73b504..191b7cd52 100644 --- a/chrome/content/zotero/tools/testTranslators/testTranslators.js +++ b/chrome/content/zotero/tools/testTranslators/testTranslators.js @@ -416,6 +416,10 @@ function haveTranslators(translators, type) { translatorTestViews[type] = []; translatorTestViewsToRun[type] = []; + translators = translators.sort(function(a, b) { + return a.label.localeCompare(b.label); + }); + for(var i in translators) { var translatorTestView = new TranslatorTestView(); translatorTestView.initWithTranslatorAndType(translators[i], type);