diff options
author | Steve Moyer <smoyer1@selesy.com> | 2022-06-16 09:02:52 -0400 |
---|---|---|
committer | Steve Moyer <smoyer1@selesy.com> | 2022-06-16 09:02:52 -0400 |
commit | 1d4667c825bb5d291070bd4463c39a16f950f674 (patch) | |
tree | 84f1101f4cddc3804955c2c2ff90e3687c1dafee /identity | |
parent | d853a6fbc996762ab264452150558bb92bdbd6fc (diff) | |
download | git-bug-1d4667c825bb5d291070bd4463c39a16f950f674.tar.gz |
refactor(809): eliminate need to defer CleanupTestRepos()
Diffstat (limited to 'identity')
-rw-r--r-- | identity/identity_actions_test.go | 3 | ||||
-rw-r--r-- | identity/identity_test.go | 7 |
2 files changed, 4 insertions, 6 deletions
diff --git a/identity/identity_actions_test.go b/identity/identity_actions_test.go index 2a5954d6..351fb7a4 100644 --- a/identity/identity_actions_test.go +++ b/identity/identity_actions_test.go @@ -9,8 +9,7 @@ import ( ) func TestIdentityPushPull(t *testing.T) { - repoA, repoB, remote := repository.SetupGoGitReposAndRemote() - defer repository.CleanupTestRepos(repoA, repoB, remote) + repoA, repoB, _ := repository.SetupGoGitReposAndRemote(t) identity1, err := NewIdentity(repoA, "name1", "email1") require.NoError(t, err) diff --git a/identity/identity_test.go b/identity/identity_test.go index 2cdb4b36..f0c3bbe9 100644 --- a/identity/identity_test.go +++ b/identity/identity_test.go @@ -245,10 +245,9 @@ func TestJSON(t *testing.T) { } func TestIdentityRemove(t *testing.T) { - repo := repository.CreateGoGitTestRepo(false) - remoteA := repository.CreateGoGitTestRepo(true) - remoteB := repository.CreateGoGitTestRepo(true) - defer repository.CleanupTestRepos(repo, remoteA, remoteB) + repo := repository.CreateGoGitTestRepo(t, false) + remoteA := repository.CreateGoGitTestRepo(t, true) + remoteB := repository.CreateGoGitTestRepo(t, true) err := repo.AddRemote("remoteA", remoteA.GetLocalRemote()) require.NoError(t, err) |