summaryrefslogtreecommitdiff
path: root/internal/processing/processor_test.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-09-30 10:56:02 +0200
committerLibravatar GitHub <noreply@github.com>2021-09-30 10:56:02 +0200
commit36a09dd0df06e1b6f64347ed3d3c2c8ca963fc73 (patch)
tree78e032fecd7c2e6b0260c2a285d9d3bc1238ffcb /internal/processing/processor_test.go
parentupstep bun to v1.0.9 (#252) (diff)
downloadgotosocial-36a09dd0df06e1b6f64347ed3d3c2c8ca963fc73.tar.xz
handle remote account deletion more systematically (#254)
Diffstat (limited to 'internal/processing/processor_test.go')
-rw-r--r--internal/processing/processor_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/processing/processor_test.go b/internal/processing/processor_test.go
index daaf46726..e0f44b0d7 100644
--- a/internal/processing/processor_test.go
+++ b/internal/processing/processor_test.go
@@ -62,6 +62,7 @@ type ProcessingStandardTestSuite struct {
testTags map[string]*gtsmodel.Tag
testMentions map[string]*gtsmodel.Mention
testAutheds map[string]*oauth.Auth
+ testBlocks map[string]*gtsmodel.Block
processor processing.Processor
}
@@ -83,6 +84,7 @@ func (suite *ProcessingStandardTestSuite) SetupSuite() {
Account: suite.testAccounts["local_account_1"],
},
}
+ suite.testBlocks = testrig.NewTestBlocks()
}
func (suite *ProcessingStandardTestSuite) SetupTest() {