diff options
Diffstat (limited to 'internal/typeutils/converter_test.go')
-rw-r--r-- | internal/typeutils/converter_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/typeutils/converter_test.go b/internal/typeutils/converter_test.go index 8030a1d20..c6f3c2579 100644 --- a/internal/typeutils/converter_test.go +++ b/internal/typeutils/converter_test.go @@ -475,6 +475,7 @@ type TypeUtilsTestSuite struct { testAttachments map[string]*gtsmodel.MediaAttachment testPeople map[string]vocab.ActivityStreamsPerson testEmojis map[string]*gtsmodel.Emoji + testReports map[string]*gtsmodel.Report typeconverter typeutils.TypeConverter } @@ -489,6 +490,7 @@ func (suite *TypeUtilsTestSuite) SetupSuite() { suite.testAttachments = testrig.NewTestAttachments() suite.testPeople = testrig.NewTestFediPeople() suite.testEmojis = testrig.NewTestEmojis() + suite.testReports = testrig.NewTestReports() suite.typeconverter = typeutils.NewConverter(suite.db) } |