You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: features/main/validation.feature
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -31,8 +31,8 @@ Feature: Using validations groups
31
31
{
32
32
"@context": "/contexts/ConstraintViolationList",
33
33
"@type": "ConstraintViolationList",
34
-
"hydra:title": "An error occurred",
35
-
"hydra:description": "name: This value should not be null.",
34
+
"title": "An error occurred",
35
+
"description": "name: This value should not be null.",
36
36
"violations": [
37
37
{
38
38
"propertyPath": "name",
@@ -60,8 +60,8 @@ Feature: Using validations groups
60
60
{
61
61
"@context": "/contexts/ConstraintViolationList",
62
62
"@type": "ConstraintViolationList",
63
-
"hydra:title": "An error occurred",
64
-
"hydra:description": "title: This value should not be null.",
63
+
"title": "An error occurred",
64
+
"description": "title: This value should not be null.",
65
65
"violations": [
66
66
{
67
67
"propertyPath": "title",
@@ -113,8 +113,8 @@ Feature: Using validations groups
113
113
{
114
114
"@context": "/contexts/ConstraintViolationList",
115
115
"@type": "ConstraintViolationList",
116
-
"hydra:title": "An error occurred",
117
-
"hydra:description": "This value should be of type unknown.\nqux: This value should be of type string.\nfoo: This value should be of type bool.\nbar: This value should be of type int.\nuuid: This value should be of type uuid.\nrelatedDummy: This value should be of type array|string.\nrelatedDummies: This value should be of type array.",
116
+
"title": "An error occurred",
117
+
"description": "This value should be of type unknown.\nqux: This value should be of type string.\nfoo: This value should be of type bool.\nbar: This value should be of type int.\nuuid: This value should be of type uuid.\nrelatedDummy: This value should be of type array|string.\nrelatedDummies: This value should be of type array.",
Copy file name to clipboardExpand all lines: features/security/validate_incoming_content-types.feature
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,4 +14,4 @@ Feature: Validate incoming content type
14
14
"""
15
15
Then the response status code should be 415
16
16
And the header "Content-Type" should be equal to "application/problem+json; charset=utf-8"
17
-
And the JSON node "hydra:description" should be equal to 'The content-type "text/plain" is not supported. Supported MIME types are "application/ld+json", "application/hal+json", "application/vnd.api+json", "application/xml", "text/xml", "application/json", "text/html", "application/graphql", "multipart/form-data".'
17
+
And the JSON node "description" should be equal to 'The content-type "text/plain" is not supported. Supported MIME types are "application/ld+json", "application/hal+json", "application/vnd.api+json", "application/xml", "text/xml", "application/json", "text/html", "application/graphql", "multipart/form-data".'
0 commit comments