Remove unecessary assert.

This commit is contained in:
Anton Stupak
2013-08-19 09:10:39 +03:00
parent 594a73d437
commit d848477596

View File

@@ -61,10 +61,8 @@ def video_is_rendered(_step, mode):
'html5': 'video',
'youtube': 'iframe'
}
if mode.lower() in modes:
assert world.css_find('.video {0}'.format(modes[mode.lower()])).first
else:
assert False
html_tag = modes[mode.lower()]
assert world.css_find('.video {0}'.format(html_tag)).first
@step('all sources are correct')
def all_sources_are_correct(_step):