diff options
Diffstat (limited to 'internal/db/bundb/bundb_test.go')
-rw-r--r-- | internal/db/bundb/bundb_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/db/bundb/bundb_test.go b/internal/db/bundb/bundb_test.go index 45d2e70a7..e050c2b5d 100644 --- a/internal/db/bundb/bundb_test.go +++ b/internal/db/bundb/bundb_test.go @@ -42,6 +42,7 @@ type BunDBStandardTestSuite struct { testMentions map[string]*gtsmodel.Mention testFollows map[string]*gtsmodel.Follow testEmojis map[string]*gtsmodel.Emoji + testReports map[string]*gtsmodel.Report } func (suite *BunDBStandardTestSuite) SetupSuite() { @@ -56,6 +57,7 @@ func (suite *BunDBStandardTestSuite) SetupSuite() { suite.testMentions = testrig.NewTestMentions() suite.testFollows = testrig.NewTestFollows() suite.testEmojis = testrig.NewTestEmojis() + suite.testReports = testrig.NewTestReports() } func (suite *BunDBStandardTestSuite) SetupTest() { |