Skip to content

Commit fab250f

Browse files
authored
Merge pull request #528 from mozilla/tracy/remove_dupe_pw_test
Remove unfinished, partial dupe test case
2 parents 39cc4f6 + 0c12872 commit fab250f

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

tests/password_manager/test_about_logins_search.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

tests/tabs/test_open_new_tab.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ def test_open_new_tab_plus(driver: Firefox):
1919
browser.set_chrome_context()
2020
browser.new_tab_by_button()
2121
browser.expect(EC.title_contains("Firefox"))
22-
assert "Firefox" in driver.title, f"Expected title to contain 'Firefox', but got '{driver.title}'"
22+
assert "Firefox" in driver.title, (
23+
f"Expected title to contain 'Firefox', but got '{driver.title}'"
24+
)

tests/tabs/test_open_new_tab_keys.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ def test_open_new_tab_via_keyboard(driver: Firefox, sys_platform: str):
1919
browser.set_chrome_context()
2020
browser.new_tab_by_keys(sys_platform)
2121
browser.expect(EC.title_contains("Firefox"))
22-
assert "Firefox" in driver.title, f"Expected title to contain 'Firefox', but got '{driver.title}'"
22+
assert "Firefox" in driver.title, (
23+
f"Expected title to contain 'Firefox', but got '{driver.title}'"
24+
)

0 commit comments

Comments
 (0)