Skip to content

Commit fbdd6da

Browse files
committed
uv + ruff
1 parent dddeeb8 commit fbdd6da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/projects_page.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def is_project_found(self, project_name: str) -> bool:
190190
projects_titles = self.wait.until(
191191
expected_conditions.visibility_of_all_elements_located(self._PROJECTS_TITLES)
192192
)
193-
return all(project_name == project_title.text.lower() for project_title in projects_titles)
193+
return any(project_name == project_title.text.lower() for project_title in projects_titles)
194194

195195
# clicks on a specific project's drop down arrow
196196
def click_drop_down_menu(self, project) -> None:

0 commit comments

Comments
 (0)