Skip to content

Commit

Permalink
Merge pull request #70 from AutomatedTester/marionette_imports
Browse files Browse the repository at this point in the history
Update marionette imports to align with upcoming changes to mozilla-cental
  • Loading branch information
jgraham committed Jan 28, 2015
2 parents ba238b3 + 1f3f1c3 commit e9ec97a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wptrunner/executors/executormarionette.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@

def do_delayed_imports():
global marionette
import marionette
try:
import marionette
except ImportError:
import marionette_driver.marionette as marionette


class MarionetteTestExecutor(TestExecutor):
Expand Down

0 comments on commit e9ec97a

Please sign in to comment.