diff options
Diffstat (limited to 'internal/db/follows_test.go')
-rw-r--r-- | internal/db/follows_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/follows_test.go b/internal/db/follows_test.go index 4caa447e..ce71fcaa 100644 --- a/internal/db/follows_test.go +++ b/internal/db/follows_test.go @@ -20,7 +20,7 @@ func TestFollows(t *testing.T) { } t.Parallel() - tables := []interface{}{new(User), new(EmailAddress), new(Follow)} + tables := []any{new(User), new(EmailAddress), new(Follow)} db := &follows{ DB: dbtest.NewDB(t, "follows", tables...), } |