diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-04 00:25:27 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-08 17:19:57 +0100 |
commit | f515b9a1291ddd3e4fe1b43bf5891ab19569e33f (patch) | |
tree | 05f043ba5d2279f547d6dbc8e2f938c240f9b04d /bridge/github/import_test.go | |
parent | 74e91144105790cc997c1d79a7f638e1e3a1f3f8 (diff) | |
download | git-bug-f515b9a1291ddd3e4fe1b43bf5891ab19569e33f.tar.gz |
gitlab also compile
Diffstat (limited to 'bridge/github/import_test.go')
-rw-r--r-- | bridge/github/import_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bridge/github/import_test.go b/bridge/github/import_test.go index 75310ab3..73eaa096 100644 --- a/bridge/github/import_test.go +++ b/bridge/github/import_test.go @@ -21,6 +21,7 @@ import ( func Test_Importer(t *testing.T) { author := identity.NewIdentity("Michael Muré", "batolettre@gmail.com") + tests := []struct { name string url string @@ -140,7 +141,11 @@ func Test_Importer(t *testing.T) { t.Skip("Env var GITHUB_TOKEN_PRIVATE missing") } + login := "test-identity" + author.SetMetadata(metaKeyGithubLogin, login) + token := auth.NewToken(envToken, target) + token.SetMetadata(metaKeyGithubLogin, login) err = auth.Store(repo, token) require.NoError(t, err) |