forked from TrueCloudLab/lego
fix: flaky tests (#1701)
This commit is contained in:
parent
409b3c9959
commit
c45b756237
1 changed files with 2 additions and 2 deletions
|
@ -263,8 +263,8 @@ func TestChallengeHTTP_Client_Registration_QueryRegistration(t *testing.T) {
|
||||||
require.NotNil(t, resource)
|
require.NotNil(t, resource)
|
||||||
|
|
||||||
assert.Equal(t, "valid", resource.Body.Status)
|
assert.Equal(t, "valid", resource.Body.Status)
|
||||||
assert.Regexp(t, `https://localhost:14000/list-orderz/\d+`, resource.Body.Orders)
|
assert.Regexp(t, `https://localhost:14000/list-orderz/[\w\d]+`, resource.Body.Orders)
|
||||||
assert.Regexp(t, `https://localhost:14000/my-account/\d+`, resource.URI)
|
assert.Regexp(t, `https://localhost:14000/my-account/[\w\d]+`, resource.URI)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestChallengeTLS_Client_Obtain(t *testing.T) {
|
func TestChallengeTLS_Client_Obtain(t *testing.T) {
|
||||||
|
|
Loading…
Reference in a new issue