Skip to content

Commit 67601d9

Browse files
committed
Revert "skip test in linux"
This reverts commit 3146e4d.
1 parent f030a53 commit 67601d9

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

modules/page_object_prefs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import datetime
2+
import logging
23
import re
34
from time import sleep
45
from typing import List

tests/password_manager/test_primary_password_triggered_on_about_logins_access.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from platform import system
2-
31
import pytest
42
from selenium.webdriver import Firefox, Keys
53

@@ -18,9 +16,6 @@ def test_case():
1816
return "2245199"
1917

2018

21-
@pytest.mark.skipif(
22-
system().lower().startswith("linux"), reason="Currently unstable in Linux"
23-
)
2419
def test_primary_password_triggered_on_about_logins_access_via_hamburger_menu(
2520
driver: Firefox,
2621
):

tests/tabs/test_reopen_tab_through_history_menu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def test_reopen_tab_through_history_menu(driver: Firefox):
3838

3939
# close the first 6 tabs
4040
for i in range(num_tabs):
41-
tabs.close_tab(tabs.get_tab(i + 1))
41+
tabs.close_tab(tabs.get_tab(num_tabs - i))
4242

4343
# open menu bar and reopen recently closed tabs
4444
panel.open()

0 commit comments

Comments
 (0)