| Index: tools/chrome_remote_control/chrome_remote_control/multi_page_benchmark_unittest_base.py
|
| diff --git a/tools/chrome_remote_control/chrome_remote_control/multi_page_benchmark_unittest_base.py b/tools/chrome_remote_control/chrome_remote_control/multi_page_benchmark_unittest_base.py
|
| index c864aba2a69d7cb2364feaf7e03655b9853e22b0..02a36cc8c2f6517324d2bfcc09dc50ea7f8147ad 100644
|
| --- a/tools/chrome_remote_control/chrome_remote_control/multi_page_benchmark_unittest_base.py
|
| +++ b/tools/chrome_remote_control/chrome_remote_control/multi_page_benchmark_unittest_base.py
|
| @@ -20,9 +20,12 @@ class MultiPageBenchmarkUnitTestBase(unittest.TestCase):
|
| def CreatePageSetFromFileInUnittestDataDir(self, test_filename):
|
| path = os.path.join(self.unittest_data_dir, test_filename)
|
| self.assertTrue(os.path.exists(path))
|
| - page = page_set.Page('file://%s' % path)
|
|
|
| - ps = page_set.PageSet()
|
| + page = page_set.Page('file://%s' % test_filename)
|
| +
|
| + ps = page_set.PageSet(description='',
|
| + file_path=os.path.join(self.unittest_data_dir,
|
| + 'test_pageset.json'))
|
| ps.pages.append(page)
|
| return ps
|
|
|
|
|