Skip to content

Commit

Permalink
Merge pull request #700 from Altinity/issue-449-tests-fix
Browse files Browse the repository at this point in the history
Fixing tests fails.
  • Loading branch information
Slach authored Dec 27, 2024
2 parents 8ad5e33 + cbd665e commit ca502b7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/testflows/steps/dashboards/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,13 @@ def delete_dashboard(self, dashboard_name):
def open_dashboard(self, dashboard_name):
"""Open dashboard view."""

with delay():
with When("I go to dashboards view"):
with When("I go to dashboards view"):
with delay():
open_dashboards_view()

with And(f"I go to {dashboard_name}"):
open_dashboard_view(dashboard_name=dashboard_name)
with delay():
open_dashboard_view(dashboard_name=dashboard_name)


@TestStep(Then)
Expand Down

0 comments on commit ca502b7

Please sign in to comment.