| Index: chrome/common/extensions/docs/server2/branch_utility_test.py
|
| diff --git a/chrome/common/extensions/docs/server2/branch_utility_test.py b/chrome/common/extensions/docs/server2/branch_utility_test.py
|
| index 8bc3bd0bb5a498ea027d9b325caaa6466b8b5c45..026d0bb1b419c8305f96448c272acd53d4c2b085 100755
|
| --- a/chrome/common/extensions/docs/server2/branch_utility_test.py
|
| +++ b/chrome/common/extensions/docs/server2/branch_utility_test.py
|
| @@ -9,6 +9,7 @@ import unittest
|
|
|
| from branch_utility import BranchUtility
|
| from fake_url_fetcher import FakeUrlFetcher
|
| +from object_store_creator import ObjectStoreCreator
|
| from test_object_store import TestObjectStore
|
|
|
| class BranchUtilityTest(unittest.TestCase):
|
| @@ -16,7 +17,7 @@ class BranchUtilityTest(unittest.TestCase):
|
| self._branch_util = BranchUtility(
|
| os.path.join('branch_utility', 'first.json'),
|
| FakeUrlFetcher(os.path.join(sys.path[0], 'test_data')),
|
| - object_store=TestObjectStore('test'))
|
| + ObjectStoreCreator.TestFactory())
|
|
|
| def testSplitChannelNameFromPath(self):
|
| self.assertEquals(('stable', 'extensions/stuff.html'),
|
|
|