aboutsummaryrefslogtreecommitdiff
path: root/internal/db/watches_test.go
diff options
context:
space:
mode:
authorJoe Chen <jc@unknwon.io>2022-10-30 23:04:24 +0800
committerGitHub <noreply@github.com>2022-10-30 23:04:24 +0800
commit1905b19ee7fcc5622ad3ad4d85cc8fc2e81a0b56 (patch)
tree11c6c7bd33837733167f5f3adc9c09dacfbdd19f /internal/db/watches_test.go
parent131be6e074039e590488892d7a99ebdbe6eb4668 (diff)
refactor(db): migrate methods off `user.go` (#7219)
Diffstat (limited to 'internal/db/watches_test.go')
-rw-r--r--internal/db/watches_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/watches_test.go b/internal/db/watches_test.go
index 7ec5b93c..46267ccd 100644
--- a/internal/db/watches_test.go
+++ b/internal/db/watches_test.go
@@ -25,7 +25,7 @@ func TestWatches(t *testing.T) {
for _, tc := range []struct {
name string
- test func(*testing.T, *watches)
+ test func(t *testing.T, db *watches)
}{
{"ListByRepo", watchesListByRepo},
} {