We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e8cb1e commit 77f50b6Copy full SHA for 77f50b6
modules/repository/commits_test.go
@@ -123,13 +123,13 @@ func TestPushCommits_AvatarLink(t *testing.T) {
123
}
124
125
assert.Equal(t,
126
- "https://secure.gravatar.com/avatar/ab53a2911ddf9b4817ac01ddcd3d975f?d=identicon&s=112",
+ "https://secure.gravatar.com/avatar/ab53a2911ddf9b4817ac01ddcd3d975f?d=identicon&s=28",
127
pushCommits.AvatarLink("user2@example.com"))
128
129
130
"https://secure.gravatar.com/avatar/"+
131
fmt.Sprintf("%x", md5.Sum([]byte("nonexistent@example.com")))+
132
- "?d=identicon&s=112",
+ "?d=identicon&s=28",
133
pushCommits.AvatarLink("nonexistent@example.com"))
134
135
0 commit comments