Update to Go 1.23 (#73)

This commit is contained in:
Cubicroot 2024-10-20 23:34:05 +02:00 committed by GitHub
parent 35f957332b
commit 15ea2935be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 139 additions and 162 deletions

View file

@ -32,7 +32,7 @@ func TestApi_getID(t *testing.T) {
for id, req := range testCases {
w, c, err := req.GetRequest()
if err != nil {
t.Fatalf(err.Error())
t.Fatal(err.Error())
}
c.Set("id", id)
@ -74,7 +74,7 @@ func TestApi_getApplication(t *testing.T) {
for id, req := range testCases {
w, c, err := req.GetRequest()
if err != nil {
t.Fatalf(err.Error())
t.Fatal(err.Error())
}
c.Set("id", id)
@ -109,7 +109,7 @@ func TestApi_getUser(t *testing.T) {
for id, req := range testCases {
w, c, err := req.GetRequest()
if err != nil {
t.Fatalf(err.Error())
t.Fatal(err.Error())
}
c.Set("id", id)