Bug 1562844 - Use correct tabId in Raptor r=robwu,rwood

More info: https://bugzilla.mozilla.org/show_bug.cgi?id=1562844#c9

Differential Revision: https://phabricator.services.mozilla.com/D41768

--HG--
extra : moz-landing-system : lando
This commit is contained in:
chrmod 2019-08-15 20:02:33 +00:00
Родитель 3aafa3960e
Коммит 47fa3b6cf0
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -456,7 +456,8 @@ async function nextCycle() {
postToControlServer("status", `update tab: ${testTabID}`);
// update the test page - browse to our test URL
ext.tabs.update(testTabID, { url: testURL }, testTabUpdated);
// "null" = active tab
ext.tabs.update(testTabID || null, { url: testURL }, testTabUpdated);
if (testType == TEST_SCENARIO) {
scenarioTimer();