summaryrefslogtreecommitdiff
path: root/internal/db/bundb/basic_test.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-11-22 14:40:23 +0100
committerLibravatar GitHub <noreply@github.com>2021-11-22 14:40:23 +0100
commit79ccd8fd8acd09f78385cda799e9049cbc59de0f (patch)
tree6f2645b00f65fe4c4f807d1ccc0994738d4719cc /internal/db/bundb/basic_test.go
parentFix incorrect target being used in CC prop for mentioning statuses (#322) (diff)
downloadgotosocial-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.go2
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() {