Skip to content

Commit f45c25a

Browse files
committed
Fix test after rebase
1 parent 0ba6127 commit f45c25a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Http/Http.Extensions/test/ValidationsGenerator/ValidationsGenerator.MultipleNamespaces.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ async Task InvalidStringWithLengthProducesError(Endpoint endpoint)
6767
var problemDetails = await AssertBadRequest(context);
6868
Assert.Collection(problemDetails.Errors, kvp =>
6969
{
70-
Assert.Equal("StringWithLength", kvp.Key);
71-
Assert.Equal("The field StringWithLength must be a string with a maximum length of 10.", kvp.Value.Single());
70+
Assert.Equal("stringWithLength", kvp.Key);
71+
Assert.Equal("The field stringWithLength must be a string with a maximum length of 10.", kvp.Value.Single());
7272
});
7373
}
7474

@@ -104,8 +104,8 @@ async Task InvalidStringWithLengthProducesError(Endpoint endpoint)
104104
var problemDetails = await AssertBadRequest(context);
105105
Assert.Collection(problemDetails.Errors, kvp =>
106106
{
107-
Assert.Equal("StringWithLength", kvp.Key);
108-
Assert.Equal("The field StringWithLength must be a string with a maximum length of 20.", kvp.Value.Single());
107+
Assert.Equal("stringWithLength", kvp.Key);
108+
Assert.Equal("The field stringWithLength must be a string with a maximum length of 20.", kvp.Value.Single());
109109
});
110110
}
111111

0 commit comments

Comments
 (0)