diff options
Diffstat (limited to 'testrig/oauthserver.go')
-rw-r--r-- | testrig/oauthserver.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testrig/oauthserver.go b/testrig/oauthserver.go index 7ed230c49..3148e2790 100644 --- a/testrig/oauthserver.go +++ b/testrig/oauthserver.go @@ -25,7 +25,7 @@ import ( "github.com/superseriousbusiness/gotosocial/internal/oauth" ) -// NewTestOauthServer returns an oauth server with the given db, and the default test logger. +// NewTestOauthServer returns an oauth server with the given db func NewTestOauthServer(db db.DB) oauth.Server { - return oauth.New(context.Background(), db, NewTestLog()) + return oauth.New(context.Background(), db) } |