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

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

Issue 176973009: Doc server: support interfaces in src/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename path constants, update APIModels.GetModel Created 6 years, 9 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/host_file_system_provider_test.py
diff --git a/chrome/common/extensions/docs/server2/host_file_system_provider_test.py b/chrome/common/extensions/docs/server2/host_file_system_provider_test.py
index da13ba88a1e53a5b3337e11a3f5d7799182b61af..e1cebb62546ed730aba71576ccc37d7c134c0672 100755
--- a/chrome/common/extensions/docs/server2/host_file_system_provider_test.py
+++ b/chrome/common/extensions/docs/server2/host_file_system_provider_test.py
@@ -6,7 +6,7 @@
from copy import deepcopy
import unittest
-from extensions_paths import API
+from extensions_paths import CHROME_API
from file_system import FileNotFoundError
from host_file_system_provider import HostFileSystemProvider
from object_store_creator import ObjectStoreCreator
@@ -15,7 +15,7 @@ from test_file_system import TestFileSystem
class HostFileSystemProviderTest(unittest.TestCase):
def setUp(self):
- self._idle_path = API + 'idle.json'
+ self._idle_path = CHROME_API + 'idle.json'
self._canned_data = deepcopy(CANNED_API_FILE_SYSTEM_DATA)
def _constructor_for_test(self, branch, **optargs):

Powered by Google App Engine
This is Rietveld 408576698