From 1a0c86a12d68a2f0ee99cbff535c82e07b735108 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 4 Oct 2020 19:56:16 +0200 Subject: repo: use go-git in more places, fix push --- tests/read_bugs_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/read_bugs_test.go') diff --git a/tests/read_bugs_test.go b/tests/read_bugs_test.go index 4fd3943a..e6264eba 100644 --- a/tests/read_bugs_test.go +++ b/tests/read_bugs_test.go @@ -9,7 +9,7 @@ import ( ) func TestReadBugs(t *testing.T) { - repo := repository.CreateTestRepo(false) + repo := repository.CreateGoGitTestRepo(false) defer repository.CleanupTestRepos(repo) random_bugs.FillRepoWithSeed(repo, 15, 42) @@ -23,7 +23,7 @@ func TestReadBugs(t *testing.T) { } func benchmarkReadBugs(bugNumber int, t *testing.B) { - repo := repository.CreateTestRepo(false) + repo := repository.CreateGoGitTestRepo(false) defer repository.CleanupTestRepos(repo) random_bugs.FillRepoWithSeed(repo, bugNumber, 42) -- cgit