Bug 1065994 - Fix mozrunner unittests which were regressed by an argument re-ordering, r=whimboo

This commit is contained in:
Andrew Halberstadt 2014-09-11 10:13:24 -04:00
Родитель 907cf18b8d
Коммит cab101a3ef
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -18,7 +18,8 @@ class MozrunnerTestCase(unittest.TestCase):
self.threads = [ ]
self.profile = mozprofile.FirefoxProfile()
self.runner = mozrunner.FirefoxRunner(self.profile)
self.runner = mozrunner.FirefoxRunner(os.environ['BROWSER_PATH'],
profile=self.profile)
def tearDown(self):
for thread in self.threads: