refactor: minor fixes.
This commit is contained in:
parent
f258f20b04
commit
95ce4f5c1e
2 changed files with 2 additions and 2 deletions
|
@ -239,7 +239,7 @@ func TestHandlerOldWay(t *testing.T) {
|
||||||
|
|
||||||
func TestHandlerOldWayIntegration(t *testing.T) {
|
func TestHandlerOldWayIntegration(t *testing.T) {
|
||||||
errorPagesServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
errorPagesServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
if r.URL.RequestURI() == "/"+strconv.Itoa(503) {
|
if r.URL.RequestURI() == "/503" {
|
||||||
fmt.Fprintln(w, "My 503 page.")
|
fmt.Fprintln(w, "My 503 page.")
|
||||||
} else {
|
} else {
|
||||||
fmt.Fprintln(w, "Test Server")
|
fmt.Fprintln(w, "Test Server")
|
||||||
|
|
|
@ -19,7 +19,7 @@ type Account struct {
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// RegistrationURLPathV1Regexp is a regexp which match ACME registration URL in the V1 format
|
// RegistrationURLPathV1Regexp is a regexp which match ACME registration URL in the V1 format
|
||||||
RegistrationURLPathV1Regexp string = `^.*/acme/reg/\d+$`
|
RegistrationURLPathV1Regexp = `^.*/acme/reg/\d+$`
|
||||||
)
|
)
|
||||||
|
|
||||||
// NewAccount creates an account
|
// NewAccount creates an account
|
||||||
|
|
Loading…
Reference in a new issue