diff options
author | Michael Muré <batolettre@gmail.com> | 2020-10-04 19:56:16 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-10-04 19:56:16 +0200 |
commit | 1a0c86a12d68a2f0ee99cbff535c82e07b735108 (patch) | |
tree | cd83782c576f2869555913d753de1351ff94a547 /api/graphql | |
parent | 9bc2483df054387c1241b2e1644ab7e6e9bc4e9a (diff) | |
download | git-bug-1a0c86a12d68a2f0ee99cbff535c82e07b735108.tar.gz |
repo: use go-git in more places, fix push
Diffstat (limited to 'api/graphql')
-rw-r--r-- | api/graphql/graphql_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/graphql/graphql_test.go b/api/graphql/graphql_test.go index 45e88e9a..69d96cab 100644 --- a/api/graphql/graphql_test.go +++ b/api/graphql/graphql_test.go @@ -14,7 +14,7 @@ import ( ) func TestQueries(t *testing.T) { - repo := repository.CreateTestRepo(false) + repo := repository.CreateGoGitTestRepo(false) defer repository.CleanupTestRepos(repo) random_bugs.FillRepoWithSeed(repo, 10, 42) |