mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 04:15:48 +02:00
refactor: Make commit.gpgSign match official capitalization
The actual usage is case insensitive, so this doesn't actually matter. But if fills my heart with joy. The test is case sensitive, but the actual response to `git config commit.gpgSign` is equivalent to `git config commit.gppsign`
This commit is contained in:
parent
52da806c57
commit
6fb3b7430c
2 changed files with 2 additions and 2 deletions
|
@ -128,7 +128,7 @@ func TestRebaseDiscardOldFileChanges(t *testing.T) {
|
|||
},
|
||||
{
|
||||
testName: "returns error when using gpg",
|
||||
gitConfigMockResponses: map[string]string{"commit.gpgsign": "true"},
|
||||
gitConfigMockResponses: map[string]string{"commit.gpgSign": "true"},
|
||||
commits: []*models.Commit{{Name: "commit", Hash: "123456"}},
|
||||
commitIndex: 0,
|
||||
fileName: []string{"test999.txt"},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue