Bug 1610850 -Fix lint failure a=lint-fix

This commit is contained in:
Noemi Erli 2020-03-26 20:29:47 +02:00
Родитель 7671f3baf7
Коммит 9dc61d1cf7
1 изменённых файлов: 2 добавлений и 4 удалений

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

@ -6,8 +6,7 @@ add_task(async function parent_to_remote() {
await BrowserTestUtils.browserLoaded(browser);
let newBC = browser.browsingContext;
isnot(originalBC.id, newBC.id,
"Should have replaced the BrowsingContext");
isnot(originalBC.id, newBC.id, "Should have replaced the BrowsingContext");
});
});
@ -19,7 +18,6 @@ add_task(async function remote_to_parent() {
await BrowserTestUtils.browserLoaded(browser);
let newBC = browser.browsingContext;
isnot(originalBC.id, newBC.id,
"Should have replaced the BrowsingContext");
isnot(originalBC.id, newBC.id, "Should have replaced the BrowsingContext");
});
});