1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-15 00:15:32 +02:00

commands/git : swap global/local get config

This commit is contained in:
Anthony HAMON
2018-09-12 07:50:49 +02:00
parent f03544f392
commit 9bad0337fe
2 changed files with 3 additions and 3 deletions

View File

@ -735,8 +735,8 @@ func TestGitCommandMerge(t *testing.T) {
func TestGitCommandUsingGpg(t *testing.T) {
type scenario struct {
testName string
getGlobalGitConfig func(string) (string, error)
getLocalGitConfig func(string) (string, error)
getGlobalGitConfig func(string) (string, error)
test func(bool)
}