aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/github/export_test.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-02-15 15:39:49 +0100
committerMichael Muré <batolettre@gmail.com>2020-02-15 15:46:36 +0100
commite231b6e83956635e5e4923c064cab19e6730150a (patch)
treea0740cc0b8b82fac54e9e863e76f7a7ad85cd672 /bridge/github/export_test.go
parent02548c0e8f96a5c08efe46bd5f71f97fdd211de3 (diff)
downloadgit-bug-e231b6e83956635e5e4923c064cab19e6730150a.tar.gz
bridges: pass the context to Init for when a client build process needs it
Diffstat (limited to 'bridge/github/export_test.go')
-rw-r--r--bridge/github/export_test.go7
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,
})