diff options
author | 2021-08-10 13:32:39 +0200 | |
---|---|---|
committer | 2021-08-10 13:32:39 +0200 | |
commit | 0f2de6394a1c52d47e326bb7d7d129a217ae4f6f (patch) | |
tree | e2709bdbbbbcf5e12d6da62b653b67f1789ab1c5 /internal/text | |
parent | Frodo swaggins (#126) (diff) | |
download | gotosocial-0f2de6394a1c52d47e326bb7d7d129a217ae4f6f.tar.xz |
Dereference remote replies (#132)
* decided where to put reply dereferencing
* fiddling with dereferencing threads
* further adventures
* tidy up some stuff
* move dereferencing functionality
* a bunch of refactoring
* go fmt
* more refactoring
* bleep bloop
* docs and linting
* start implementing replies collection on gts side
* fiddling around
* allow dereferencing our replies
* lint, fmt
Diffstat (limited to 'internal/text')
-rw-r--r-- | internal/text/link_test.go | 2 | ||||
-rw-r--r-- | internal/text/plain_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/text/link_test.go b/internal/text/link_test.go index 15e27f870..83c42f045 100644 --- a/internal/text/link_test.go +++ b/internal/text/link_test.go @@ -86,7 +86,7 @@ func (suite *LinkTestSuite) SetupTest() { suite.log = testrig.NewTestLog() suite.formatter = text.NewFormatter(suite.config, suite.db, suite.log) - testrig.StandardDBSetup(suite.db) + testrig.StandardDBSetup(suite.db, nil) } func (suite *LinkTestSuite) TearDownTest() { diff --git a/internal/text/plain_test.go b/internal/text/plain_test.go index 1e0d1471a..183ccc478 100644 --- a/internal/text/plain_test.go +++ b/internal/text/plain_test.go @@ -57,7 +57,7 @@ func (suite *PlainTestSuite) SetupTest() { suite.log = testrig.NewTestLog() suite.formatter = text.NewFormatter(suite.config, suite.db, suite.log) - testrig.StandardDBSetup(suite.db) + testrig.StandardDBSetup(suite.db, nil) } func (suite *PlainTestSuite) TearDownTest() { |