[GITEA] Show manual cron run's last time (squash) 27 jobs in cron fixtures

(cherry picked from commit bb71759454)
(cherry picked from commit cc258d342e)
(cherry picked from commit f3c615e7d2)
(cherry picked from commit 360ac8e69d)
(cherry picked from commit 30c276085d)
This commit is contained in:
Earl Warren 2023-08-29 10:33:02 +02:00
parent 836836bd73
commit aad366c085
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -298,11 +298,11 @@ func TestAPICron(t *testing.T) {
req := NewRequest(t, "GET", urlStr)
resp := MakeRequest(t, req, http.StatusOK)
assert.Equal(t, "26", resp.Header().Get("X-Total-Count"))
assert.Equal(t, "27", resp.Header().Get("X-Total-Count"))
var crons []api.Cron
DecodeJSON(t, resp, &crons)
assert.Len(t, crons, 26)
assert.Len(t, crons, 27)
})
t.Run("Execute", func(t *testing.T) {