aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-04-16 16:35:18 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-04-17 13:48:18 +0000
commitacc528cbf40c42eb112d2ce66c5f778bd4a397fb (patch)
tree1db39cbb9517df790fdf189d3bd1f59e4b7a8b0c /pkg/vcs
parent18f6e127bf6e515fc3eee0936bde2415e676e160 (diff)
tools/syz-linter: check t.Logf/Errorf/Fatalf messages
Fix checking of Logf, it has string in 0-th arg. Add checking of t.Errorf/Fatalf.
Diffstat (limited to 'pkg/vcs')
-rw-r--r--pkg/vcs/vcs_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/vcs/vcs_test.go b/pkg/vcs/vcs_test.go
index aeccb3149..01e1fe7f5 100644
--- a/pkg/vcs/vcs_test.go
+++ b/pkg/vcs/vcs_test.go
@@ -226,7 +226,7 @@ func TestFileLink(t *testing.T) {
for _, test := range tests {
link := FileLink(test.URL, test.Hash, test.File, test.Line)
if link != test.FileLink {
- t.Errorf("Test: %+v\ngot: %v", test, link)
+ t.Errorf("test: %+v\ngot: %v", test, link)
}
}
}