diff options
Diffstat (limited to 'integrations/user_avatar_test.go')
-rw-r--r-- | integrations/user_avatar_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/user_avatar_test.go b/integrations/user_avatar_test.go index 6de2914f7f..f07b7c7fcf 100644 --- a/integrations/user_avatar_test.go +++ b/integrations/user_avatar_test.go @@ -73,7 +73,7 @@ func TestUserAvatar(t *testing.T) { user2 = db.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User) // owner of the repo3, is an org - req = NewRequest(t, "GET", user2.AvatarLink()) + req = NewRequest(t, "GET", user2.AvatarLinkWithSize(0)) _ = session.MakeRequest(t, req, http.StatusOK) // Can't test if the response matches because the image is re-generated on upload but checking that this at least doesn't give a 404 should be enough. |