0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-10-27 01:24:09 -04:00

Update dependencies (#35733)

- Update all JS, Python and Makefile dependencies
- Fixed two new go lint issues
- Tested the affected JS dependencies.
This commit is contained in:
silverwind
2025-10-23 10:35:48 +02:00
committed by GitHub
parent 522c466e24
commit cab35ff17a
6 changed files with 871 additions and 926 deletions

View File

@@ -47,5 +47,5 @@ func TestGetNonExistentNotes(t *testing.T) {
note := Note{}
err = GetNote(t.Context(), bareRepo1, "non_existent_sha", &note)
assert.Error(t, err)
assert.IsType(t, ErrNotExist{}, err)
assert.ErrorAs(t, err, &ErrNotExist{})
}