Skip to content

Commit

Permalink
update ansible variable override function
Browse files Browse the repository at this point in the history
  • Loading branch information
amolpati30 committed Oct 28, 2024
1 parent 85ac9fe commit 19e5638
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion airgun/entities/ansible_variable.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from navmazing import NavigateToSibling
from wait_for import wait_for

from airgun.entities.base import BaseEntity
from airgun.navigation import NavigateStep, navigator
Expand Down Expand Up @@ -44,7 +45,7 @@ def create_with_overrides(self, values):
view.override.fill(True)
view.expand()
view.matcher_section.before_fill(values)
view.fill(values)
wait_for(lambda: view.fill(values), timeout=30)
view.submit.click()
view.flash.assert_no_error()
view.flash.dismiss()
Expand Down

0 comments on commit 19e5638

Please sign in to comment.