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

Unified Diff: tests/scm_unittest.py

Issue 554146: Change CheckCall behavior when print_error=False (Closed)
Patch Set: Created 10 years, 11 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 | « tests/gclient_utils_test.py ('k') | trychange.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/scm_unittest.py
diff --git a/tests/scm_unittest.py b/tests/scm_unittest.py
index ce7a23c263448a695bae38858c4dfff7d7779d18..3807e97d45c9c408b27033a826e5d4414e7ba6b5 100755
--- a/tests/scm_unittest.py
+++ b/tests/scm_unittest.py
@@ -127,7 +127,7 @@ from :3
def testGetEmail(self):
self.mox.StubOutWithMock(scm.GIT, 'Capture')
scm.GIT.Capture(['config', 'user.email'], self.fake_root, error_ok=True
- ).AndReturn('mini@me.com')
+ ).AndReturn(['mini@me.com', ''])
Nasser Grainawi 2010/01/31 03:44:35 Shouldn't this be ('mini@me.com', '') since Captur
self.mox.ReplayAll()
self.assertEqual(scm.GIT.GetEmail(self.fake_root), 'mini@me.com')
« no previous file with comments | « tests/gclient_utils_test.py ('k') | trychange.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698