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 /tests/read_bugs_test.go | |
parent | d853a6fbc996762ab264452150558bb92bdbd6fc (diff) | |
download | git-bug-1d4667c825bb5d291070bd4463c39a16f950f674.tar.gz |
refactor(809): eliminate need to defer CleanupTestRepos()
Diffstat (limited to 'tests/read_bugs_test.go')
-rw-r--r-- | tests/read_bugs_test.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/read_bugs_test.go b/tests/read_bugs_test.go index b1983689..fd9e994b 100644 --- a/tests/read_bugs_test.go +++ b/tests/read_bugs_test.go @@ -9,8 +9,7 @@ import ( ) func TestReadBugs(t *testing.T) { - repo := repository.CreateGoGitTestRepo(false) - defer repository.CleanupTestRepos(repo) + repo := repository.CreateGoGitTestRepo(t, false) random_bugs.FillRepoWithSeed(repo, 15, 42) @@ -23,8 +22,7 @@ func TestReadBugs(t *testing.T) { } func benchmarkReadBugs(bugNumber int, t *testing.B) { - repo := repository.CreateGoGitTestRepo(false) - defer repository.CleanupTestRepos(repo) + repo := repository.CreateGoGitTestRepo(t, false) random_bugs.FillRepoWithSeed(repo, bugNumber, 42) t.ResetTimer() |