This commit is contained in:
Hossein Shafagh 2020-11-06 22:41:48 -08:00 committed by GitHub
parent 519411b309
commit 7c779d6283
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ def test_upload_acme_token(app):
"value": bucket,
"type": "str",
"required": True,
"validation": "[0-9a-z.-]{3,63}",
"validation": r"[0-9a-z.-]{3,63}",
"helpMessage": "Must be a valid S3 bucket name!",
},
{
@ -36,7 +36,7 @@ def test_upload_acme_token(app):
"type": "str",
"value": account,
"required": True,
"validation": "[0-9]{12}",
"validation": r"[0-9]{12}",
"helpMessage": "A valid AWS account number with permission to access S3",
},
{