Skip to content

Commit 19e0f1a

Browse files
committed
chore: npm run lint:fix
1 parent affbd86 commit 19e0f1a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/zen/tests/urlbar/browser_vim_navigation.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ add_task(async function test_Vim_Navigation() {
1111
gURLBar.blur();
1212

1313
await SpecialPowers.pushPrefEnv({
14-
set: [['zen.urlbar.vim-navigation.enabled', true]]
14+
set: [['zen.urlbar.vim-navigation.enabled', true]],
1515
});
1616

1717
await SimpleTest.promiseFocus(window);
@@ -29,8 +29,10 @@ add_task(async function test_Vim_Navigation() {
2929
EventUtils.synthesizeKey('j', { ctrlKey: true }, window);
3030
EventUtils.synthesizeKey('VK_DOWN', {}, window);
3131

32-
ok(UrlbarTestUtils.getSelectedRowIndex(window) == 3, 'Ctrl+j and down should change the selection');
33-
32+
ok(
33+
UrlbarTestUtils.getSelectedRowIndex(window) == 3,
34+
'Ctrl+j and down should change the selection'
35+
);
3436

3537
// Ctrl+k and up should work to move the selection up
3638
EventUtils.synthesizeKey('k', { ctrlKey: true }, window);

0 commit comments

Comments
 (0)