aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/github/export_test.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-02-23 14:05:03 +0100
committerMichael Muré <batolettre@gmail.com>2020-02-23 14:20:54 +0100
commit0cebe1e57e7e4b03aef77cd11bd4fc683c32afc6 (patch)
tree6c488eef7d39ffcf9226cb1952460b44920ed39e /bridge/github/export_test.go
parentb3318335986618388637a9d35d68b39633e4548a (diff)
downloadgit-bug-0cebe1e57e7e4b03aef77cd11bd4fc683c32afc6.tar.gz
bridge: record the login used during the configure and use it as default credential
fix #338
Diffstat (limited to 'bridge/github/export_test.go')
-rw-r--r--bridge/github/export_test.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/bridge/github/export_test.go b/bridge/github/export_test.go
index acbd657a..0748ecbf 100644
--- a/bridge/github/export_test.go
+++ b/bridge/github/export_test.go
@@ -190,8 +190,9 @@ func TestPushPull(t *testing.T) {
// initialize exporter
exporter := &githubExporter{}
err = exporter.Init(ctx, backend, core.Configuration{
- confKeyOwner: envUser,
- confKeyProject: projectName,
+ confKeyOwner: envUser,
+ confKeyProject: projectName,
+ confKeyDefaultLogin: login,
})
require.NoError(t, err)
@@ -217,8 +218,9 @@ func TestPushPull(t *testing.T) {
importer := &githubImporter{}
err = importer.Init(ctx, backend, core.Configuration{
- confKeyOwner: envUser,
- confKeyProject: projectName,
+ confKeyOwner: envUser,
+ confKeyProject: projectName,
+ confKeyDefaultLogin: login,
})
require.NoError(t, err)