This is an automated email from the ASF dual-hosted git repository.
linkinstar pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-answer.git
The following commit(s) were added to refs/heads/dev by this push:
new 57b0d0e8 test: fix TestGetAvatarURL
57b0d0e8 is described below
commit 57b0d0e84dd0e0bf3c8a05a38a7f55eddc5f0dda
Author: wxt <[email protected]>
AuthorDate: Mon Nov 25 14:18:57 2024 +0800
test: fix TestGetAvatarURL
---
pkg/gravatar/gravatar_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/gravatar/gravatar_test.go b/pkg/gravatar/gravatar_test.go
index 50bd79b4..cedbb1a3 100644
--- a/pkg/gravatar/gravatar_test.go
+++ b/pkg/gravatar/gravatar_test.go
@@ -38,7 +38,7 @@ func TestGetAvatarURL(t *testing.T) {
{
name: "[email protected]",
args: args{email: "[email protected]"},
- want:
"https://www.gravatar.com/avatar/b2be4e4438f08a5e885be8de5f41fdd7",
+ want:
"https://www.gravatar.com/avatar/7296942c1f63d97f6c124705142009867638f7b3dbcdadd0cb1bcb40e427eb8e",
},
}
for _, tt := range tests {