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

Unified Diff: chrome/common/extensions/docs/server2/features_bundle_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/features_bundle_test.py
diff --git a/chrome/common/extensions/docs/server2/features_bundle_test.py b/chrome/common/extensions/docs/server2/features_bundle_test.py
index 50767975bc1ae25f4024e0185a990181d1544b71..d873ff861971e9c56241f33ba4c521e672505ccc 100755
--- a/chrome/common/extensions/docs/server2/features_bundle_test.py
+++ b/chrome/common/extensions/docs/server2/features_bundle_test.py
@@ -6,7 +6,7 @@
import json
import unittest
-from extensions_paths import EXTENSIONS
+from extensions_paths import CHROME_EXTENSIONS
from server_instance import ServerInstance
from test_file_system import TestFileSystem
@@ -138,7 +138,7 @@ _TEST_FILESYSTEM = {
class FeaturesBundleTest(unittest.TestCase):
def setUp(self):
self._server = ServerInstance.ForTest(
- TestFileSystem(_TEST_FILESYSTEM, relative_to=EXTENSIONS))
+ TestFileSystem(_TEST_FILESYSTEM, relative_to=CHROME_EXTENSIONS))
def testManifestFeatures(self):
expected_features = {

Powered by Google App Engine
This is Rietveld 408576698