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: src/Service.Tests/UnitTests/ConfigValidationUnitTests.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2070,13 +2070,13 @@ public void ValidateRestMethodsForEntityInConfig(
2070
2070
DisplayName="Rest path for an entity containing reserved character ? fails config validation.")]
2071
2071
[DataRow(true,"EntityA","entity#RestPath",true,"The rest path: entity#RestPath for entity: EntityA contains '#' which is reserved for URL fragments.",
2072
2072
DisplayName="Rest path for an entity containing reserved character # fails config validation.")]
2073
-
[DataRow(true,"EntityA","entity[]RestPath",true,"The rest path: entity[]RestPath for entity: EntityA contains characters that are not allowed in URL paths. Valid paths contain only alphanumeric characters, hyphens (-), and underscores (_), with forward slashes (/) as path separators.",
2073
+
[DataRow(true,"EntityA","entity[]RestPath",true,"The rest path: entity[]RestPath for entity: EntityA contains reserved characters that are not allowed in URL paths.",
2074
2074
DisplayName="Rest path for an entity containing reserved character [] fails config validation.")]
2075
-
[DataRow(true,"EntityA","entity+Rest*Path",true,"The rest path: entity+Rest*Path for entity: EntityA contains characters that are not allowed in URL paths. Valid paths contain only alphanumeric characters, hyphens (-), and underscores (_), with forward slashes (/) as path separators.",
2075
+
[DataRow(true,"EntityA","entity+Rest*Path",true,"The rest path: entity+Rest*Path for entity: EntityA contains reserved characters that are not allowed in URL paths.",
2076
2076
DisplayName="Rest path for an entity containing reserved character +* fails config validation.")]
2077
2077
[DataRow(true,"Entity?A",null,true,"The rest path: Entity?A for entity: Entity?A contains '?' which is reserved for query strings in URLs.",
2078
2078
DisplayName="Entity name for an entity containing reserved character ? fails config validation.")]
2079
-
[DataRow(true,"Entity&*[]A",null,true,"The rest path: Entity&*[]A for entity: Entity&*[]A contains characters that are not allowed in URL paths. Valid paths contain only alphanumeric characters, hyphens (-), and underscores (_), with forward slashes (/) as path separators.",
2079
+
[DataRow(true,"Entity&*[]A",null,true,"The rest path: Entity&*[]A for entity: Entity&*[]A contains reserved characters that are not allowed in URL paths.",
2080
2080
DisplayName="Entity name containing reserved character &*[] fails config validation.")]
2081
2081
[DataRow(false,"EntityA","entityRestPath",true,DisplayName="Rest path correctly configured as a non-empty string without any reserved characters.")]
0 commit comments