| Index: tests/gclient_scm_test.py
 | 
| diff --git a/tests/gclient_scm_test.py b/tests/gclient_scm_test.py
 | 
| index 85a4a6a68e4caa2c76874b5b337803228153aec2..229254264596b8d32b48930a4f238baa59cc84ca 100755
 | 
| --- a/tests/gclient_scm_test.py
 | 
| +++ b/tests/gclient_scm_test.py
 | 
| @@ -750,6 +750,10 @@ from :3
 | 
|          stdout=PIPE, stderr=STDOUT, cwd=path).communicate()
 | 
|      Popen(['git', 'config', '--unset', 'remote.origin.fetch'], stdout=PIPE,
 | 
|          stderr=STDOUT, cwd=path).communicate()
 | 
| +    Popen(['git', 'config', 'user.email', 'someuser@chromium.org'], stdout=PIPE,
 | 
| +        stderr=STDOUT, cwd=path).communicate()
 | 
| +    Popen(['git', 'config', 'user.name', 'Some User'], stdout=PIPE,
 | 
| +        stderr=STDOUT, cwd=path).communicate()
 | 
|      return True
 | 
|  
 | 
|    def setUp(self):
 | 
| 
 |