aboutsummaryrefslogtreecommitdiffstats
path: root/commands/env_testing.go
diff options
context:
space:
mode:
authorSteve Moyer <smoyer1@selesy.com>2022-06-16 09:02:52 -0400
committerSteve Moyer <smoyer1@selesy.com>2022-06-16 09:02:52 -0400
commit1d4667c825bb5d291070bd4463c39a16f950f674 (patch)
tree84f1101f4cddc3804955c2c2ff90e3687c1dafee /commands/env_testing.go
parentd853a6fbc996762ab264452150558bb92bdbd6fc (diff)
downloadgit-bug-1d4667c825bb5d291070bd4463c39a16f950f674.tar.gz
refactor(809): eliminate need to defer CleanupTestRepos()
Diffstat (limited to 'commands/env_testing.go')
-rw-r--r--commands/env_testing.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/commands/env_testing.go b/commands/env_testing.go
index 4de66a9d..b3c51c69 100644
--- a/commands/env_testing.go
+++ b/commands/env_testing.go
@@ -21,6 +21,8 @@ func newTestEnv(t *testing.T) *testEnv {
cwd := t.TempDir()
+ // r := repository.CreateGoGitTestRepo(t, false) // TODO
+
repo, err := repository.InitGoGitRepo(cwd, gitBugNamespace)
require.NoError(t, err)
t.Cleanup(func() {