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

Unified Diff: tests/super_mox.py

Issue 391052: Group SCM-specific functions in classes to simplify generalization of the interface. (Closed)
Patch Set: One more fix Created 11 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: tests/super_mox.py
diff --git a/tests/super_mox.py b/tests/super_mox.py
index 8eab47408deba1bf5f37f41fd55a16f57f36a8f5..4fb7962d5fdb3b540f9d2fc1c016454dc17b9100 100644
--- a/tests/super_mox.py
+++ b/tests/super_mox.py
@@ -71,7 +71,7 @@ class SuperMoxBaseTestBase(mox.MoxTestBase):
if actual_members != expected_members:
diff = ([i for i in actual_members if i not in expected_members] +
[i for i in expected_members if i not in actual_members])
- print diff
+ print>>sys.stderr, diff
self.assertEqual(actual_members, expected_members)
def UnMock(self, object, name):
« scm.py ('K') | « tests/scm_unittest.py ('k') | tests/trychange_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698