| Index: chrome/common/extensions/docs/server2/test_patcher.py
|
| diff --git a/chrome/common/extensions/docs/server2/test_patcher.py b/chrome/common/extensions/docs/server2/test_patcher.py
|
| index faa491fae07218d08e1f179f91aa407b144afbc0..e1516af0cb728aec392d6d615b8f1a7e5c99411c 100644
|
| --- a/chrome/common/extensions/docs/server2/test_patcher.py
|
| +++ b/chrome/common/extensions/docs/server2/test_patcher.py
|
| @@ -29,6 +29,7 @@ class TestPatcher(Patcher):
|
| assert binary
|
| self.apply_count += 1
|
| try:
|
| - return Future(value={path: self._patch_data[path] for path in paths})
|
| + return Future(value=dict((path, self._patch_data[path])
|
| + for path in paths))
|
| except KeyError:
|
| raise FileNotFoundError('One of %s is deleted in the patch.' % paths)
|
|
|