diff options
Diffstat (limited to 'bridge/github/import_test.go')
-rw-r--r-- | bridge/github/import_test.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bridge/github/import_test.go b/bridge/github/import_test.go index 1e31501b..24356f34 100644 --- a/bridge/github/import_test.go +++ b/bridge/github/import_test.go @@ -133,16 +133,16 @@ func Test_Importer(t *testing.T) { defer backend.Close() interrupt.RegisterCleaner(backend.Close) - token := os.Getenv("GITHUB_TOKEN") + token := os.Getenv("GITHUB_TOKEN_PRIVATE") if token == "" { - t.Skip("Env var GITHUB_TOKEN missing") + t.Skip("Env var GITHUB_TOKEN_PRIVATE missing") } importer := &githubImporter{} err = importer.Init(core.Configuration{ - "user": "MichaelMure", - "project": "git-bug-test-github-bridge", - "token": token, + keyOwner: "MichaelMure", + keyProject: "git-bug-test-github-bridge", + keyToken: token, }) require.NoError(t, err) |