| Index: chrome/common/extensions/docs/server2/content_provider_test.py
|
| diff --git a/chrome/common/extensions/docs/server2/content_provider_test.py b/chrome/common/extensions/docs/server2/content_provider_test.py
|
| index afe47e251754fab1107beca0d88b5d1d0ce51296..c93815bd622035636234478405037baf9d70301e 100755
|
| --- a/chrome/common/extensions/docs/server2/content_provider_test.py
|
| +++ b/chrome/common/extensions/docs/server2/content_provider_test.py
|
| @@ -14,7 +14,7 @@ from file_system import FileNotFoundError
|
| from object_store_creator import ObjectStoreCreator
|
| from path_canonicalizer import PathCanonicalizer
|
| from test_file_system import TestFileSystem
|
| -from third_party.handlebar import Handlebar
|
| +from third_party.motemplate import Motemplate
|
|
|
| _REDIRECTS_JSON = json.dumps({
|
| 'oldfile.html': 'storage.html',
|
| @@ -99,7 +99,7 @@ class ContentProviderUnittest(unittest.TestCase):
|
|
|
| def _assertTemplateContent(self, content, path, version):
|
| content_and_type = self._content_provider.GetContentAndType(path).Get()
|
| - self.assertEqual(Handlebar, type(content_and_type.content))
|
| + self.assertEqual(Motemplate, type(content_and_type.content))
|
| content_and_type.content = content_and_type.content.source
|
| self._assertContent(content, 'text/html', content_and_type)
|
| self.assertEqual(version, self._content_provider.GetVersion(path).Get())
|
|
|