Skip to content
Snippets Groups Projects
Commit c4259ba9 authored by Alexander Kryklia's avatar Alexander Kryklia
Browse files

Fix

parent 494fd52d
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ def lti_is_not_rendered(_step):
assert world.css_visible('.error_message')
# iframe is not visible
assert (not world.css_visible('iframe'))
assert not world.css_visible('iframe')
#inside iframe test content is not presented
with world.browser.get_iframe('ltiLaunchFrame') as iframe:
......@@ -31,7 +31,7 @@ def lti_is_rendered(_step):
assert world.is_css_present('div.lti.rendered')
# error is hidden
assert (not world.css_visible('.error_message'))
assert not world.css_visible('.error_message')
# iframe is visible
assert world.css_visible('iframe')
......@@ -52,7 +52,7 @@ def incorrect_lti_is_rendered(_step):
assert world.is_css_present('div.lti.rendered')
# error is hidden
assert (not world.css_visible('.error_message'))
assert not world.css_visible('.error_message')
# iframe is visible
assert world.css_visible('iframe')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment