Skip to content
This repository has been archived by the owner on Aug 14, 2020. It is now read-only.

Commit

Permalink
Bug 1118758 - Adjust phonedash url for new url syntax, r=self.
Browse files Browse the repository at this point in the history
  • Loading branch information
bclary committed Jan 28, 2015
1 parent fadc14c commit 0222138
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/perftest.py
Expand Up @@ -101,12 +101,13 @@ def setup_job(self):
def _phonedash_url(self, testname):
if not self.result_server or not self.build:
return 'http://phonedash.mozilla.org/'
trybuild = 'try' if 'try-builds' in self.build.url else 'notry'
buildday = (self.build.id[0:4] + '-' + self.build.id[4:6] + '-' +
self.build.id[6:8])
url = ('%s/#/%s/throbberstart/%s/norejected/%s/%s/notcached/'
'noerrorbars/standarderror' % (
'noerrorbars/standarderror/%s' % (
self.result_server, self.build.app_name, testname,
buildday, buildday))
buildday, buildday, trybuild))
return url

@property
Expand Down

0 comments on commit 0222138

Please sign in to comment.