Skip to content

Commit

Permalink
test: Remove Browser.select_PF_deprecated
Browse files Browse the repository at this point in the history
The linter complains otherwise, since we no longer use it in Cockpit
itself. There are no other external users either, afaics.
  • Loading branch information
mvollmer committed Dec 5, 2024
1 parent c53d04d commit 78faf8b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions test/common/testlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -732,11 +732,6 @@ def select_PF(self, selector: str, value: str, menu_class: str = ".pf-v5-c-menu"
self.click(f"{menu_class} button:contains('{value}')")
self.wait_not_present(menu_class)

def select_PF_deprecated(self, selector: str, value: str) -> None:
"""For the deprecated PatternFly Select component"""

self.select_PF(selector, value, menu_class=".pf-v5-c-select__menu")

def set_input_text(
self, selector: str, val: str, append: bool = False, value_check: bool = True, blur: bool = True
) -> None:
Expand Down

0 comments on commit 78faf8b

Please sign in to comment.