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

Unified Diff: tests/gclient_test.py

Issue 8143022: Have the DEPS only parsed in the relevant thread. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Rebase against 8142030 / 5 Created 9 years, 2 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 | « gclient.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/gclient_test.py
diff --git a/tests/gclient_test.py b/tests/gclient_test.py
index a3b0c115b176ccb5c73ae498c710d27888f9502e..764970a4ad8312d462b2694d51097fd2ffd02edb 100755
--- a/tests/gclient_test.py
+++ b/tests/gclient_test.py
@@ -189,8 +189,9 @@ class GclientTest(trial_dir.TestCase):
def _check_requirements(self, solution, expected):
for dependency in solution.dependencies:
- self.assertEquals(
- expected.pop(dependency.name), sorted(dependency.requirements))
+ e = expected.pop(dependency.name)
+ a = sorted(dependency.requirements)
+ self.assertEquals(e, a, (dependency.name, e, a))
self.assertEquals({}, expected)
def _get_processed(self):
« no previous file with comments | « gclient.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698