Skip to content

Commit 0befc22

Browse files
author
Sakari Rautiainen
authored
Merge pull request #54 from sagge/master
added missing 'self.' declaration
2 parents df330ef + 55693da commit 0befc22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testdroid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ def download_test_run(self, project_id, test_run_id):
574574
if run_status in ("SUCCEEDED", "FAILED", "EXCLUDED"):
575575
directory = "%s-%s/%d-%s" % (test_run_id, test_run['displayName'], device_run['id'], device_run['device']['displayName'])
576576
session_id = device_run['deviceSessionId']
577-
files = get_device_run_files(project_id, test_run_id, session_id)
577+
files = self.get_device_run_files(project_id, test_run_id, session_id)
578578
for file in files['data']:
579579
if file['state'] == "READY":
580580
full_path = "%s/%s" % (directory, file['name'])

0 commit comments

Comments
 (0)