diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-15 15:51:16 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-15 15:51:16 +0100 |
commit | 0bb9ed9b0e6a53fd668be0c60127af78ddd061b5 (patch) | |
tree | 72efd9bdbf1ecdda60cdeaab561a5fc36b032871 /bridge/github/export_test.go | |
parent | cfa005889a7d398ee71eac4a6d4b23a691a7ef2a (diff) | |
parent | 157e10f2e1d49748f62e210cadc088ecae9f3dfc (diff) | |
download | git-bug-0bb9ed9b0e6a53fd668be0c60127af78ddd061b5.tar.gz |
Merge remote-tracking branch 'origin/master' into cheshirekow-jira
Diffstat (limited to 'bridge/github/export_test.go')
-rw-r--r-- | bridge/github/export_test.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bridge/github/export_test.go b/bridge/github/export_test.go index a25d56d7..acbd657a 100644 --- a/bridge/github/export_test.go +++ b/bridge/github/export_test.go @@ -185,15 +185,16 @@ func TestPushPull(t *testing.T) { return deleteRepository(projectName, envUser, envToken) }) + ctx := context.Background() + // initialize exporter exporter := &githubExporter{} - err = exporter.Init(backend, core.Configuration{ + err = exporter.Init(ctx, backend, core.Configuration{ confKeyOwner: envUser, confKeyProject: projectName, }) require.NoError(t, err) - ctx := context.Background() start := time.Now() // export all bugs @@ -215,7 +216,7 @@ func TestPushPull(t *testing.T) { require.NoError(t, err) importer := &githubImporter{} - err = importer.Init(backend, core.Configuration{ + err = importer.Init(ctx, backend, core.Configuration{ confKeyOwner: envUser, confKeyProject: projectName, }) |