Index: chrome/common/extensions/docs/server2/rietveld_patcher_test.py |
diff --git a/chrome/common/extensions/docs/server2/rietveld_patcher_test.py b/chrome/common/extensions/docs/server2/rietveld_patcher_test.py |
index 8a42fb0d0f4997f665d788d228af27e7018db84b..ca0dfaf8330ff5f9870ca8e97f0947690a381269 100755 |
--- a/chrome/common/extensions/docs/server2/rietveld_patcher_test.py |
+++ b/chrome/common/extensions/docs/server2/rietveld_patcher_test.py |
@@ -9,7 +9,8 @@ import sys |
import unittest |
from appengine_url_fetcher import AppEngineUrlFetcher |
from extensions_paths import ( |
- ARTICLES_TEMPLATES, EXTENSIONS, DOCS, JSON_TEMPLATES, PUBLIC_TEMPLATES) |
+ ARTICLES_TEMPLATES, CHROME_EXTENSIONS, DOCS, JSON_TEMPLATES, |
+ PUBLIC_TEMPLATES) |
from fake_fetchers import ConfigureFakeFetchers |
from file_system import FileNotFoundError |
from rietveld_patcher import RietveldPatcher |
@@ -52,9 +53,10 @@ class RietveldPatcherTest(unittest.TestCase): |
['%sextensions/runtime.html' % PUBLIC_TEMPLATES]) |
self.assertEqual( |
sorted(modified), |
- _PrefixWith(EXTENSIONS, ['api/test.json', |
- 'docs/templates/json/extensions_sidenav.json', |
- 'manifest.h'])) |
+ _PrefixWith(CHROME_EXTENSIONS, |
+ ['api/test.json', |
+ 'docs/templates/json/extensions_sidenav.json', |
+ 'manifest.h'])) |
def testApply(self): |
article_path = '%stest_foo.html' % ARTICLES_TEMPLATES |