From 0c9cbcd9a8b352e44c4bf84bb483c6a19ee21233 Mon Sep 17 00:00:00 2001 From: Michael Camilleri Date: Tue, 14 Apr 2020 14:04:25 +0900 Subject: [PATCH] Disable GPG Signing in Test Config If a user has GPG signing set to true in their global .gitconfig file, the test suite will fail. This is because the test suit now includes a check of a commit message (the `test_commit_with_no_verify` test in `tests/units/test_lib.rb`) but did not update the test config file. This commit updates the config file to set the `gpgsign` option to false. Signed-off-by: Michael Camilleri --- tests/files/working/dot_git/config | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/files/working/dot_git/config b/tests/files/working/dot_git/config index d28b4c0e..6c545b24 100644 --- a/tests/files/working/dot_git/config +++ b/tests/files/working/dot_git/config @@ -1,6 +1,8 @@ [user] - name = Scott Chacon - email = schacon@gmail.com + name = Scott Chacon + email = schacon@gmail.com +[commit] + gpgsign = false [core] repositoryformatversion = 0 filemode = true