Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(675)

Unified Diff: chrome/common/extensions/docs/server2/template_renderer_test.py

Issue 498813002: Rename the docserver third_party dependency "handlebar" to "motemplate", as part (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: imports Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/docs/server2/template_renderer.py ('k') | third_party/handlebar/.gitignore » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/server2/template_renderer_test.py
diff --git a/chrome/common/extensions/docs/server2/template_renderer_test.py b/chrome/common/extensions/docs/server2/template_renderer_test.py
index 986b877cb8ccac707c6a735a230ba9b1413d0074..386f3e7a6a2fcce1589adc0c150843c3b4dec585 100755
--- a/chrome/common/extensions/docs/server2/template_renderer_test.py
+++ b/chrome/common/extensions/docs/server2/template_renderer_test.py
@@ -6,7 +6,7 @@
import unittest
from server_instance import ServerInstance
-from third_party.handlebar import Handlebar
+from third_party.motemplate import Motemplate
class TemplateRendererTest(unittest.TestCase):
@@ -20,7 +20,7 @@ class TemplateRendererTest(unittest.TestCase):
self._template_renderer = ServerInstance.ForLocal().template_renderer
def testSimpleWiring(self):
- template = Handlebar('hello {{?true}}{{strings.extension}}{{/}}')
+ template = Motemplate('hello {{?true}}{{strings.extension}}{{/}}')
text, warnings = self._template_renderer.Render(template, None)
self.assertEqual('hello extension', text)
self.assertEqual([], warnings)
« no previous file with comments | « chrome/common/extensions/docs/server2/template_renderer.py ('k') | third_party/handlebar/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698