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

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

Issue 337373004: Docserver: Replace instances of 'Api' with 'API' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: chrome/common/extensions/docs/server2/api_schema_graph_test.py
diff --git a/chrome/common/extensions/docs/server2/api_schema_graph_test.py b/chrome/common/extensions/docs/server2/api_schema_graph_test.py
index d27e535af061197b0b6412c0bbad6e9d5f265fdb..7928dad7893d50274b389e3623c6ce71369830bc 100755
--- a/chrome/common/extensions/docs/server2/api_schema_graph_test.py
+++ b/chrome/common/extensions/docs/server2/api_schema_graph_test.py
@@ -56,7 +56,7 @@ API_SCHEMA = [{
class APISchemaGraphTest(unittest.TestCase):
def testLookup(self):
- self._testApiSchema(APISchemaGraph(API_SCHEMA))
+ self._testAPISchema(APISchemaGraph(API_SCHEMA))
def testIsEmpty(self):
# A few assertions to make sure that Lookup works on empty sets.
@@ -79,10 +79,10 @@ class APISchemaGraphTest(unittest.TestCase):
'parameters', 'updateInfo'))
def testSubtractEmpty(self):
- self._testApiSchema(
+ self._testAPISchema(
APISchemaGraph(API_SCHEMA).Subtract(APISchemaGraph({})))
- def _testApiSchema(self, api_schema_graph):
+ def _testAPISchema(self, api_schema_graph):
self.assertEqual(LookupResult(True, None),
api_schema_graph.Lookup('tabs', 'properties',
'TAB_PROPERTY_ONE'))

Powered by Google App Engine
This is Rietveld 408576698