mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-15 22:01:08 +00:00
[GITEA] Simplify cron list test (squash)
- As per https://codeberg.org/forgejo/forgejo/pulls/1352#issuecomment-1076074 - Only test if the returned stuff is correct, not necessarily accurate. (cherry picked from commit55bcaf60ec
) (cherry picked from commit4f03e48106
)
This commit is contained in:
parent
f3c615e7d2
commit
f35c31b9be
1 changed files with 3 additions and 2 deletions
|
@ -298,11 +298,12 @@ func TestAPICron(t *testing.T) {
|
|||
req := NewRequest(t, "GET", urlStr)
|
||||
resp := MakeRequest(t, req, http.StatusOK)
|
||||
|
||||
assert.Equal(t, "27", resp.Header().Get("X-Total-Count"))
|
||||
assert.NotEmpty(t, resp.Header().Get("X-Total-Count"))
|
||||
|
||||
var crons []api.Cron
|
||||
DecodeJSON(t, resp, &crons)
|
||||
assert.Len(t, crons, 27)
|
||||
|
||||
assert.NotEmpty(t, crons)
|
||||
})
|
||||
|
||||
t.Run("Execute", func(t *testing.T) {
|
||||
|
|
Loading…
Reference in a new issue