зеркало из https://github.com/mozilla/gecko-dev.git
Bug 805635: making sure we close the file on import_script; r=mdas a=NPOTB
This commit is contained in:
Родитель
a264f7ca52
Коммит
5a30f21f8f
|
@ -427,7 +427,8 @@ class Marionette(object):
|
|||
def get_perf_data(self):
|
||||
return self._send_message('getPerfData', 'value')
|
||||
|
||||
def import_script(self, file):
|
||||
f = open(file, "r")
|
||||
js = f.read()
|
||||
def import_script(self, js_file):
|
||||
js = ''
|
||||
with open(js_file, "r") as f:
|
||||
js = f.read()
|
||||
return self._send_message('importScript', 'ok', script=js)
|
||||
|
|
Загрузка…
Ссылка в новой задаче