diff options
author | harry <harryzhxu@gmail.com> | 2017-10-23 03:50:07 -0500 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-10-23 03:50:07 -0500 |
commit | 81d1e54a49cc61e64608ff2aee055110c7e4f811 (patch) | |
tree | 70b5efe8835127be80c3cbe30f42bccad0a7bdd8 /models/action_test.go | |
parent | e4990ba205d56f7b6fda990d6c2d19a60b35fc56 (diff) | |
download | gitea-81d1e54a49cc61e64608ff2aee055110c7e4f811.tar.gz gitea-81d1e54a49cc61e64608ff2aee055110c7e4f811.zip |
Use identicon image for default gravatar. (#2767)
* Use identicon image for default gravatar.
* Fixed tests.
Diffstat (limited to 'models/action_test.go')
-rw-r--r-- | models/action_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/action_test.go b/models/action_test.go index f329195bfd..2bcd22cb22 100644 --- a/models/action_test.go +++ b/models/action_test.go @@ -146,11 +146,11 @@ func TestPushCommits_AvatarLink(t *testing.T) { pushCommits.Len = len(pushCommits.Commits) assert.Equal(t, - "https://secure.gravatar.com/avatar/ab53a2911ddf9b4817ac01ddcd3d975f", + "https://secure.gravatar.com/avatar/ab53a2911ddf9b4817ac01ddcd3d975f?d=identicon", pushCommits.AvatarLink("user2@example.com")) assert.Equal(t, - "https://secure.gravatar.com/avatar/19ade630b94e1e0535b3df7387434154", + "https://secure.gravatar.com/avatar/19ade630b94e1e0535b3df7387434154?d=identicon", pushCommits.AvatarLink("nonexistent@example.com")) } |