aboutsummaryrefslogtreecommitdiff
path: root/internal/db/follows_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db/follows_test.go')
-rw-r--r--internal/db/follows_test.go2
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...),
}