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

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

Issue 63203002: Docserver: Make the hand-written Cron methods run first rather than last, since (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: jeffrey Created 7 years, 1 month 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 842ee0922f7e0cc733c646e5b6ead4b1aa6653ad..fb9cbafc25f54350e4ff61eceb71762c0eec3ef0 100755
--- a/chrome/common/extensions/docs/server2/features_bundle_test.py
+++ b/chrome/common/extensions/docs/server2/features_bundle_test.py
@@ -173,7 +173,7 @@ class FeaturesBundleTest(unittest.TestCase):
}
self.assertEqual(
expected_features,
- self._server.features_bundle.GetManifestFeatures())
+ self._server.features_bundle.GetManifestFeatures().Get())
def testPermissionFeatures(self):
expected_features = {
@@ -206,7 +206,7 @@ class FeaturesBundleTest(unittest.TestCase):
}
self.assertEqual(
expected_features,
- self._server.features_bundle.GetPermissionFeatures())
+ self._server.features_bundle.GetPermissionFeatures().Get())
def testAPIFeatures(self):
expected_features = {
@@ -254,7 +254,7 @@ class FeaturesBundleTest(unittest.TestCase):
}
self.assertEqual(
expected_features,
- self._server.features_bundle.GetAPIFeatures())
+ self._server.features_bundle.GetAPIFeatures().Get())
if __name__ == '__main__':
unittest.main()

Powered by Google App Engine
This is Rietveld 408576698