diff options
author | 2021-11-22 14:40:23 +0100 | |
---|---|---|
committer | 2021-11-22 14:40:23 +0100 | |
commit | 79ccd8fd8acd09f78385cda799e9049cbc59de0f (patch) | |
tree | 6f2645b00f65fe4c4f807d1ccc0994738d4719cc /internal/db/bundb/basic_test.go | |
parent | Fix incorrect target being used in CC prop for mentioning statuses (#322) (diff) | |
download | gotosocial-79ccd8fd8acd09f78385cda799e9049cbc59de0f.tar.xz |
Fix mentioned accounts visibility bug (#323)
* update other tests
* set test status to followers_only
* add test dm
* fix mentioned accounts not being added to relevantAccounts
* add some visibility tests for statuses
Diffstat (limited to 'internal/db/bundb/basic_test.go')
-rw-r--r-- | internal/db/bundb/basic_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/bundb/basic_test.go b/internal/db/bundb/basic_test.go index e5f7e159a..3c9eb8a86 100644 --- a/internal/db/bundb/basic_test.go +++ b/internal/db/bundb/basic_test.go @@ -43,7 +43,7 @@ func (suite *BasicTestSuite) TestGetAllStatuses() { s := []*gtsmodel.Status{} err := suite.db.GetAll(context.Background(), &s) suite.NoError(err) - suite.Len(s, 13) + suite.Len(s, 14) } func (suite *BasicTestSuite) TestGetAllNotNull() { |