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

Unified Diff: chrome/common/extensions/docs/server2/jsc_view_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
Index: chrome/common/extensions/docs/server2/jsc_view_test.py
diff --git a/chrome/common/extensions/docs/server2/jsc_view_test.py b/chrome/common/extensions/docs/server2/jsc_view_test.py
index 57d982306e215880075dc9732735de54f6a96679..b21763b72ef52205da9fa0119b91e99c45f952bc 100755
--- a/chrome/common/extensions/docs/server2/jsc_view_test.py
+++ b/chrome/common/extensions/docs/server2/jsc_view_test.py
@@ -31,7 +31,7 @@ from test_util import Server2Path
class _FakeTemplateCache(object):
def GetFromFile(self, key):
- return Future(value='handlebar %s' % key)
+ return Future(value='motemplate %s' % key)
class _FakeFeaturesBundle(object):
@@ -189,7 +189,7 @@ class JSCViewTest(unittest.TestCase):
},
{ 'title': 'Availability',
'content': [
- { 'partial': 'handlebar chrome/common/extensions/docs/' +
+ { 'partial': 'motemplate chrome/common/extensions/docs/' +
'templates/private/intro_tables/stable_message.html',
'version': 5,
'scheduled': None
@@ -214,7 +214,7 @@ class JSCViewTest(unittest.TestCase):
{ 'title': 'Content Scripts',
'content': [
{
- 'partial': 'handlebar chrome/common/extensions/docs' +
+ 'partial': 'motemplate chrome/common/extensions/docs' +
'/templates/private/intro_tables/content_scripts.html',
'contentScriptSupport': {
'name': 'tester',
@@ -247,7 +247,7 @@ class JSCViewTest(unittest.TestCase):
expected_list[1] = {
'title': 'Availability',
'content': [
- { 'partial': 'handlebar chrome/common/extensions/docs/' +
+ { 'partial': 'motemplate chrome/common/extensions/docs/' +
'templates/private/intro_tables/beta_message.html',
'version': 27,
'scheduled': 28
@@ -396,7 +396,7 @@ class JSCViewWithNodeAvailabilityTest(unittest.TestCase):
self.assertEquals({
'scheduled': None,
'version': 26,
- 'partial': 'handlebar chrome/common/extensions/docs/templates/' +
+ 'partial': 'motemplate chrome/common/extensions/docs/templates/' +
'private/intro_tables/deprecated_message.html'
}, model_dict['types'][2]['availability'])

Powered by Google App Engine
This is Rietveld 408576698