Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #8287 from niyazRedhat/fix-service
Browse files Browse the repository at this point in the history
[RFR] Fix orchestration template flash assertion error
  • Loading branch information
mshriver committed Dec 18, 2018
2 parents a2768a1 + 266535e commit 2855fb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cfme/services/catalogs/orchestration_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ def copy_template(self, template_name, content, draft=None, description=None):
'description': description
})
view.add_button.click()
view.wait_displayed('15s')
view.wait_displayed()
assert view.is_displayed
view.flash.assert_no_error()
# TODO - Move assertions to tests
return self.parent.instantiate(template_group=self.template_group,
Expand Down

0 comments on commit 2855fb0

Please sign in to comment.