Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Commit

Permalink
Remove bogus try/except block when navigating to a reftest page.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham committed Jun 8, 2015
1 parent 6258375 commit dd47f98
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions wptrunner/executors/executormarionette.py
Expand Up @@ -391,10 +391,7 @@ def screenshot(self, test):
timeout).run()

def _screenshot(self, marionette, url, timeout):
try:
marionette.navigate(url)
except errors.MarionetteException:
raise ExecutorException("ERROR", "Failed to load url %s" % (url,))
marionette.navigate(url)

marionette.execute_async_script(self.wait_script)

Expand Down

0 comments on commit dd47f98

Please sign in to comment.