diff options
author | Michael Muré <batolettre@gmail.com> | 2020-12-08 14:42:13 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-12-08 14:42:13 +0100 |
commit | c884d557bf5e0ebdbe6e3b20535af24c2e97d29f (patch) | |
tree | 3bb95fcf0d6a2a19e6915cdcc1da4d70bc448bb4 /identity/identity_test.go | |
parent | 71e1303234ef227851998f08c98c7c69670c9966 (diff) | |
download | git-bug-c884d557bf5e0ebdbe6e3b20535af24c2e97d29f.tar.gz git-bug-c884d557bf5e0ebdbe6e3b20535af24c2e97d29f.zip |
repo: move bleve there
Diffstat (limited to 'identity/identity_test.go')
-rw-r--r-- | identity/identity_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/identity/identity_test.go b/identity/identity_test.go index baf933c8..82e58b01 100644 --- a/identity/identity_test.go +++ b/identity/identity_test.go @@ -273,10 +273,10 @@ func TestIdentityRemove(t *testing.T) { remoteB := repository.CreateGoGitTestRepo(true) defer repository.CleanupTestRepos(repo, remoteA, remoteB) - err := repo.AddRemote("remoteA", "file://"+remoteA.GetPath()) + err := repo.AddRemote("remoteA", remoteA.GetLocalRemote()) require.NoError(t, err) - err = repo.AddRemote("remoteB", "file://"+remoteB.GetPath()) + err = repo.AddRemote("remoteB", remoteB.GetLocalRemote()) require.NoError(t, err) // generate an identity for testing |