You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-vcs/git-cola/files/git-cola-2.2.1-update-git-c...

14 lines
445 B

diff --git a/test/helper.py b/test/helper.py
index 006a5b1..64d0dfc 100644
--- a/test/helper.py
+++ b/test/helper.py
@@ -87,6 +87,8 @@ class GitRepositoryTestCase(TmpPathTestCase):
def initialize_repo(self):
self.git('init')
+ self.git('config', '--local', 'user.name', 'Your Name')
+ self.git('config', '--local', 'user.email', 'you@example.com')
self.touch('A', 'B')
self.git('add', 'A', 'B')