mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
Test ignore migration rate limitation error (#12715)
This commit is contained in:
parent
ca81b6528b
commit
fb603825f5
1 changed files with 10 additions and 1 deletions
|
@ -321,7 +321,16 @@ func TestAPIRepoMigrate(t *testing.T) {
|
||||||
UID: int(testCase.userID),
|
UID: int(testCase.userID),
|
||||||
RepoName: testCase.repoName,
|
RepoName: testCase.repoName,
|
||||||
})
|
})
|
||||||
session.MakeRequest(t, req, testCase.expectedStatus)
|
resp := MakeRequest(t, req, NoExpectedStatus)
|
||||||
|
if resp.Code == http.StatusUnprocessableEntity {
|
||||||
|
respJSON := map[string]string{}
|
||||||
|
DecodeJSON(t, resp, &respJSON)
|
||||||
|
if assert.Equal(t, respJSON["message"], "Remote visit addressed rate limitation.") {
|
||||||
|
t.Log("test hit github rate limitation")
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
assert.EqualValues(t, testCase.expectedStatus, resp.Code)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue