diff options
Diffstat (limited to 'internal/api/s2s/user/user_test.go')
-rw-r--r-- | internal/api/s2s/user/user_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/api/s2s/user/user_test.go b/internal/api/s2s/user/user_test.go index eba0f61f0..86aa0bdf4 100644 --- a/internal/api/s2s/user/user_test.go +++ b/internal/api/s2s/user/user_test.go @@ -53,6 +53,7 @@ type UserStandardTestSuite struct { testAccounts map[string]*gtsmodel.Account testAttachments map[string]*gtsmodel.MediaAttachment testStatuses map[string]*gtsmodel.Status + testBlocks map[string]*gtsmodel.Block // module being tested userModule *user.Module @@ -66,6 +67,7 @@ func (suite *UserStandardTestSuite) SetupSuite() { suite.testAccounts = testrig.NewTestAccounts() suite.testAttachments = testrig.NewTestAttachments() suite.testStatuses = testrig.NewTestStatuses() + suite.testBlocks = testrig.NewTestBlocks() } func (suite *UserStandardTestSuite) SetupTest() { |