mirror of
https://github.com/pushbits/server.git
synced 2025-06-10 14:42:01 +02:00
Update to Go 1.23 (#73)
This commit is contained in:
parent
35f957332b
commit
15ea2935be
14 changed files with 139 additions and 162 deletions
|
@ -36,7 +36,7 @@ func TestApi_CreateNotification(t *testing.T) {
|
|||
var notification model.Notification
|
||||
w, c, err := req.GetRequest()
|
||||
if err != nil {
|
||||
t.Fatalf(err.Error())
|
||||
t.Fatal(err.Error())
|
||||
}
|
||||
|
||||
c.Set("app", &testApplication)
|
||||
|
@ -83,7 +83,7 @@ func TestApi_DeleteNotification(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("app", &testApplication)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue