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

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

Issue 344453003: Docserver: separate models for apps and extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase/Add comment Created 6 years, 6 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/api_models.py ('k') | chrome/common/extensions/docs/server2/app.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/server2/api_models_test.py
diff --git a/chrome/common/extensions/docs/server2/api_models_test.py b/chrome/common/extensions/docs/server2/api_models_test.py
index c0336cfb611e1e881810ea6de3bc13ff276fdc26..9f91de1e56df63f8f17bcdc863add12858489359 100755
--- a/chrome/common/extensions/docs/server2/api_models_test.py
+++ b/chrome/common/extensions/docs/server2/api_models_test.py
@@ -59,10 +59,14 @@ class APIModelsTest(unittest.TestCase):
compiled_fs_factory = CompiledFileSystem.Factory(object_store_creator)
self._mock_file_system = MockFileSystem(
TestFileSystem(_TEST_DATA, relative_to=CHROME_EXTENSIONS))
- features_bundle = FeaturesBundle(
- self._mock_file_system, compiled_fs_factory, object_store_creator)
- self._api_models = APIModels(
- features_bundle, compiled_fs_factory, self._mock_file_system)
+ features_bundle = FeaturesBundle(self._mock_file_system,
+ compiled_fs_factory,
+ object_store_creator,
+ 'extensions')
+ self._api_models = APIModels(features_bundle,
+ compiled_fs_factory,
+ self._mock_file_system,
+ 'extensions')
def testGetNames(self):
# Both 'app' and 'app.runtime' appear here because 'app.runtime' has
« no previous file with comments | « chrome/common/extensions/docs/server2/api_models.py ('k') | chrome/common/extensions/docs/server2/app.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698