diff options
Diffstat (limited to 'internal/db/two_factors_test.go')
-rw-r--r-- | internal/db/two_factors_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/two_factors_test.go b/internal/db/two_factors_test.go index e2d58cd5..64e253bd 100644 --- a/internal/db/two_factors_test.go +++ b/internal/db/two_factors_test.go @@ -67,7 +67,7 @@ func TestTwoFactors(t *testing.T) { } t.Parallel() - tables := []interface{}{new(TwoFactor), new(TwoFactorRecoveryCode)} + tables := []any{new(TwoFactor), new(TwoFactorRecoveryCode)} db := &twoFactors{ DB: dbtest.NewDB(t, "twoFactors", tables...), } |