diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-05-24 21:32:13 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-05-29 22:58:01 +0200 |
commit | 70268ff4ecda62bb9f8d7494d04a6941fa0dce51 (patch) | |
tree | 463d4e0479c9d6a96baa467d922e57d1a2dc2f24 /bridge/github/import_test.go | |
parent | 5f80f242fa2afc7c5844d685d94d70fba97b7a0c (diff) | |
download | git-bug-70268ff4ecda62bb9f8d7494d04a6941fa0dce51.tar.gz |
Change keyUser to keyOwner in Github bridge
Diffstat (limited to 'bridge/github/import_test.go')
-rw-r--r-- | bridge/github/import_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bridge/github/import_test.go b/bridge/github/import_test.go index 1e31501b..9704e56f 100644 --- a/bridge/github/import_test.go +++ b/bridge/github/import_test.go @@ -140,9 +140,9 @@ func Test_Importer(t *testing.T) { 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) |