From 1873ddd03615690798be70c68e5172d58c233877 Mon Sep 17 00:00:00 2001 From: tsmethurst Date: Sun, 10 Oct 2021 11:35:11 +0200 Subject: [PATCH] update test with activities --- internal/processing/processor_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/processing/processor_test.go b/internal/processing/processor_test.go index a74f316c6..7a1db442e 100644 --- a/internal/processing/processor_test.go +++ b/internal/processing/processor_test.go @@ -69,6 +69,7 @@ type ProcessingStandardTestSuite struct { testMentions map[string]*gtsmodel.Mention testAutheds map[string]*oauth.Auth testBlocks map[string]*gtsmodel.Block + testActivities map[string]testrig.ActivityWithSignature sentHTTPRequests map[string][]byte @@ -92,6 +93,7 @@ func (suite *ProcessingStandardTestSuite) SetupSuite() { Account: suite.testAccounts["local_account_1"], }, } + suite.testActivities = testrig.NewTestActivities(suite.testAccounts) suite.testBlocks = testrig.NewTestBlocks() }