diff options
author | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-24 20:19:11 +0000 |
---|---|---|
committer | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-24 20:19:11 +0000 |
commit | 228db22dd5d3d8d52f92593487b75d1259b26f0a (patch) | |
tree | e1b8b2410dcb532296b267365ce4ab2ac84629f8 /chrome/test | |
parent | 3f8b7f953842383694da5cf792f207c7eafcc134 (diff) | |
download | chromium_src-228db22dd5d3d8d52f92593487b75d1259b26f0a.zip chromium_src-228db22dd5d3d8d52f92593487b75d1259b26f0a.tar.gz chromium_src-228db22dd5d3d8d52f92593487b75d1259b26f0a.tar.bz2 |
Remove duplicate path join call.
Not sure why it was working on my machine, not on waterfall bot.
Anyway it was wrong.
Review URL: http://codereview.chromium.org/5283003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67303 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/functional/pdf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/functional/pdf.py b/chrome/test/functional/pdf.py index c8ceb63..0ef91ff 100644 --- a/chrome/test/functional/pdf.py +++ b/chrome/test/functional/pdf.py @@ -43,7 +43,7 @@ class PDFTest(pyauto.PyUITest): # Some pdfs cause known crashes. Exclude them. crbug.com/63549 if os.path.basename(pdf_file) in ('nullip.pdf', 'sample.pdf'): continue - url = self.GetFileURLForPath(os.path.join(pdf_files_path, pdf_file)) + url = self.GetFileURLForPath(pdf_file) self.AppendTab(pyauto.GURL(url)) for tab_index in range(1, len(pdf_files) + 1): self.ActivateTab(tab_index) |