diff options
author | 2022-05-16 18:48:59 +0200 | |
---|---|---|
committer | 2022-05-16 18:48:59 +0200 | |
commit | 5ef41ba3f21f4c2105f668fc35b6284749e17775 (patch) | |
tree | bd77afe69fab45d411bc6604f35737dcb941acda /internal/db/bundb/basic_test.go | |
parent | testrig: override bind address from environment variable (#577) (diff) | |
download | gotosocial-5ef41ba3f21f4c2105f668fc35b6284749e17775.tar.xz |
[chore] Timeline test updates (#578)
* add admin boost of zork to test model
* update tests to make them more determinate
* remove printf call
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 f3c4580c8..1705ebc0d 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, 16) + suite.Len(s, 17) } func (suite *BasicTestSuite) TestGetAllNotNull() { |