chore: update golangci-lint config and fix lint issues (#542)

* chore: update golangci-lint config and fix lint issues
This commit is contained in:
Roger
2026-04-04 16:26:07 +08:00
committed by GitHub
parent e35907de6f
commit 92053b85b0
14 changed files with 116 additions and 138 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ func mkFile(t *testing.T, parts ...string) {
func TestListBrowsers(t *testing.T) {
list := ListBrowsers()
assert.True(t, len(list) > 0)
assert.NotEmpty(t, list)
assert.True(t, sort.StringsAreSorted(list))
}
+1 -1
View File
@@ -399,7 +399,7 @@ func TestAcquireFiles(t *testing.T) {
assert.Len(t, paths, len(cats))
for _, p := range paths {
_, err := os.Stat(p)
assert.NoError(t, err, "acquired file should exist")
require.NoError(t, err, "acquired file should exist")
}
}
+1 -1
View File
@@ -40,5 +40,5 @@ func TestExtractHistories_NullFields(t *testing.T) {
require.NoError(t, err)
require.Len(t, got, 1)
assert.Equal(t, "https://null.test", got[0].URL)
assert.Equal(t, "", got[0].Title)
assert.Empty(t, got[0].Title)
}