From e120fdb97e3af76198eadc8a44e6feb732b4dd83 Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Thu, 26 May 2022 13:39:13 -0400 Subject: refactor: use namespace instead of application of applicationName --- repository/gogit_testing.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'repository/gogit_testing.go') diff --git a/repository/gogit_testing.go b/repository/gogit_testing.go index f80f62c0..7647c711 100644 --- a/repository/gogit_testing.go +++ b/repository/gogit_testing.go @@ -7,7 +7,7 @@ import ( "github.com/99designs/keyring" ) -const testApplicationName = "git-bug" +const namespace = "git-bug" // This is intended for testing only @@ -25,7 +25,7 @@ func CreateGoGitTestRepo(bare bool) TestedRepo { creator = InitGoGitRepo } - repo, err := creator(dir, testApplicationName) + repo, err := creator(dir, namespace) if err != nil { log.Fatal(err) } -- cgit