Chromium Code Reviews| 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') |