diff options
author | Michael Muré <batolettre@gmail.com> | 2020-10-04 20:45:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-04 20:45:42 +0200 |
commit | 68e2a72b2a3047d84aba44f22751fb13b34553c1 (patch) | |
tree | 6e1496a1a6603abbd473cc0060a5acebc763a68b /identity/identity_actions_test.go | |
parent | d56ce3d5d9f5ef74201a8ee7c25be4820d435b47 (diff) | |
parent | ca720f165cb286d4372ad48595e532a2423f2f07 (diff) | |
download | git-bug-68e2a72b2a3047d84aba44f22751fb13b34553c1.tar.gz |
Merge pull request #455 from MichaelMure/bug-loading-fix
cache,bug,identity: structural change
Diffstat (limited to 'identity/identity_actions_test.go')
-rw-r--r-- | identity/identity_actions_test.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/identity/identity_actions_test.go b/identity/identity_actions_test.go index 48652438..773574c6 100644 --- a/identity/identity_actions_test.go +++ b/identity/identity_actions_test.go @@ -23,7 +23,7 @@ func TestPushPull(t *testing.T) { err = Pull(repoB, "origin") require.NoError(t, err) - identities := allIdentities(t, ReadAllLocalIdentities(repoB)) + identities := allIdentities(t, ReadAllLocal(repoB)) if len(identities) != 1 { t.Fatal("Unexpected number of bugs") @@ -40,7 +40,7 @@ func TestPushPull(t *testing.T) { err = Pull(repoA, "origin") require.NoError(t, err) - identities = allIdentities(t, ReadAllLocalIdentities(repoA)) + identities = allIdentities(t, ReadAllLocal(repoA)) if len(identities) != 2 { t.Fatal("Unexpected number of bugs") @@ -70,7 +70,7 @@ func TestPushPull(t *testing.T) { err = Pull(repoB, "origin") require.NoError(t, err) - identities = allIdentities(t, ReadAllLocalIdentities(repoB)) + identities = allIdentities(t, ReadAllLocal(repoB)) if len(identities) != 2 { t.Fatal("Unexpected number of bugs") @@ -84,7 +84,7 @@ func TestPushPull(t *testing.T) { err = Pull(repoA, "origin") require.NoError(t, err) - identities = allIdentities(t, ReadAllLocalIdentities(repoA)) + identities = allIdentities(t, ReadAllLocal(repoA)) if len(identities) != 2 { t.Fatal("Unexpected number of bugs") @@ -118,7 +118,7 @@ func TestPushPull(t *testing.T) { err = Pull(repoB, "origin") require.Error(t, err) - identities = allIdentities(t, ReadAllLocalIdentities(repoB)) + identities = allIdentities(t, ReadAllLocal(repoB)) if len(identities) != 2 { t.Fatal("Unexpected number of bugs") @@ -133,7 +133,7 @@ func TestPushPull(t *testing.T) { err = Pull(repoA, "origin") require.NoError(t, err) - identities = allIdentities(t, ReadAllLocalIdentities(repoA)) + identities = allIdentities(t, ReadAllLocal(repoA)) if len(identities) != 2 { t.Fatal("Unexpected number of bugs") |