Revert "Production deploy 5/10/2024"

This commit is contained in:
Steven Reilly
2024-05-14 13:57:14 -04:00
committed by GitHub
parent faf6170b67
commit 8ac605fcb1
5 changed files with 572 additions and 566 deletions

View File

@@ -237,7 +237,7 @@ def test_update_template_folder_users(admin_request, sample_service):
[
({}, "name is a required property"),
({"name": None}, "name None is not of type string"),
({"name": ""}, "name should be non-empty"),
({"name": ""}, "name is too short"),
],
)
def test_update_template_folder_fails_if_missing_name(

View File

@@ -89,7 +89,7 @@ def test_create_webauthn_credential_returns_201(admin_request, sample_user):
"name None is not of type string",
),
# name is empty
({"name": "", "credential_data": "ABC123"}, "name should be non-empty"),
({"name": "", "credential_data": "ABC123"}, "name is too short"),
],
)
def test_create_webauthn_credential_errors_if_schema_violation(
@@ -131,7 +131,7 @@ def test_update_webauthn_credential_returns_200(admin_request, sample_user):
# name is null
({"name": None}, "name None is not of type string"),
# name is empty
({"name": ""}, "name should be non-empty"),
({"name": ""}, "name is too short"),
],
)
def test_update_webauthn_credential_errors_if_schema_violation(