diff options
author | 2023-12-10 12:36:00 +0100 | |
---|---|---|
committer | 2023-12-10 12:36:00 +0100 | |
commit | d60edf7ec61537d70915c41de5526b81dd795a2c (patch) | |
tree | bcd69cc2322198828961d71c27444a334894f7fa /internal/api/client/accounts | |
parent | [bugfix] Fix web media not showing as sensitive (#2433) (diff) | |
download | gotosocial-d60edf7ec61537d70915c41de5526b81dd795a2c.tar.xz |
[bugfix] Ensure `pre` renders as expected, fix orderedCollectionPage (#2434)
Diffstat (limited to 'internal/api/client/accounts')
-rw-r--r-- | internal/api/client/accounts/accountverify_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/accounts/accountverify_test.go b/internal/api/client/accounts/accountverify_test.go index 7827cc732..744488bf3 100644 --- a/internal/api/client/accounts/accountverify_test.go +++ b/internal/api/client/accounts/accountverify_test.go @@ -79,7 +79,7 @@ func (suite *AccountVerifyTestSuite) TestAccountVerifyGet() { suite.Equal("http://localhost:8080/fileserver/01F8MH1H7YV1Z7D2C8K2730QBF/header/small/01PFPMWK2FF0D9WMHEJHR07C3Q.jpg", apimodelAccount.HeaderStatic) suite.Equal(2, apimodelAccount.FollowersCount) suite.Equal(2, apimodelAccount.FollowingCount) - suite.Equal(6, apimodelAccount.StatusesCount) + suite.Equal(7, apimodelAccount.StatusesCount) suite.EqualValues(gtsmodel.VisibilityPublic, apimodelAccount.Source.Privacy) suite.Equal(testAccount.Language, apimodelAccount.Source.Language) suite.Equal(testAccount.NoteRaw, apimodelAccount.Source.Note) |