diff options
author | 2022-12-08 17:35:14 +0000 | |
---|---|---|
committer | 2022-12-08 18:35:14 +0100 | |
commit | e58d2d81226c4cc4110747305d083b67903d621c (patch) | |
tree | 249f8b3f4732ccdb1e77b2d4243fafb4ee4c1c86 /internal/db/bundb/bundbnew_test.go | |
parent | [chore] Remove deprecated linters (#1228) (diff) | |
download | gotosocial-e58d2d81226c4cc4110747305d083b67903d621c.tar.xz |
[chore] move caches to a separate State{} structure (#1078)
* move caches to a separate State{} structure
Signed-off-by: kim <grufwub@gmail.com>
* fix call to log.Panic not using formatted call
Signed-off-by: kim <grufwub@gmail.com>
* move caches to use interfaces, to make switchouts easier in future
Signed-off-by: kim <grufwub@gmail.com>
* fix rebase issue
Signed-off-by: kim <grufwub@gmail.com>
* improve code comment
Signed-off-by: kim <grufwub@gmail.com>
* fix further issues after rebase
Signed-off-by: kim <grufwub@gmail.com>
* heh
Signed-off-by: kim <grufwub@gmail.com>
* add missing license text
Signed-off-by: kim <grufwub@gmail.com>
Signed-off-by: kim <grufwub@gmail.com>
Diffstat (limited to 'internal/db/bundb/bundbnew_test.go')
-rw-r--r-- | internal/db/bundb/bundbnew_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/db/bundb/bundbnew_test.go b/internal/db/bundb/bundbnew_test.go index 2bd945864..bdc1eae03 100644 --- a/internal/db/bundb/bundbnew_test.go +++ b/internal/db/bundb/bundbnew_test.go @@ -33,7 +33,7 @@ type BundbNewTestSuite struct { func (suite *BundbNewTestSuite) TestCreateNewDB() { // create a new db with standard test settings - db, err := bundb.NewBunDBService(context.Background()) + db, err := bundb.NewBunDBService(context.Background(), nil) suite.NoError(err) suite.NotNil(db) } @@ -42,7 +42,7 @@ func (suite *BundbNewTestSuite) TestCreateNewSqliteDBNoAddress() { // create a new db with no address specified config.SetDbAddress("") config.SetDbType("sqlite") - db, err := bundb.NewBunDBService(context.Background()) + db, err := bundb.NewBunDBService(context.Background(), nil) suite.EqualError(err, "'db-address' was not set when attempting to start sqlite") suite.Nil(db) } |