summaryrefslogtreecommitdiff
path: root/internal/db/bundb/basic_test.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2023-12-10 12:36:00 +0100
committerLibravatar GitHub <noreply@github.com>2023-12-10 12:36:00 +0100
commitd60edf7ec61537d70915c41de5526b81dd795a2c (patch)
treebcd69cc2322198828961d71c27444a334894f7fa /internal/db/bundb/basic_test.go
parent[bugfix] Fix web media not showing as sensitive (#2433) (diff)
downloadgotosocial-d60edf7ec61537d70915c41de5526b81dd795a2c.tar.xz
[bugfix] Ensure `pre` renders as expected, fix orderedCollectionPage (#2434)
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 67973a171..fc601f2a5 100644
--- a/internal/db/bundb/basic_test.go
+++ b/internal/db/bundb/basic_test.go
@@ -121,7 +121,7 @@ func (suite *BasicTestSuite) TestGetAllStatuses() {
s := []*gtsmodel.Status{}
err := suite.db.GetAll(context.Background(), &s)
suite.NoError(err)
- suite.Len(s, 22)
+ suite.Len(s, 23)
}
func (suite *BasicTestSuite) TestGetAllNotNull() {