Skip to content

Commit e531ab1

Browse files
test(register): [PM-27084] Account Register Uses New Data Types - Fixed accounts controller tests.
1 parent 05d8cc5 commit e531ab1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Api.IntegrationTest/Controllers/AccountsControllerTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ public async Task PostKdf_InvalidKdf_BadRequest(KdfType kdf, int kdfIterations,
358358

359359
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
360360
var content = await response.Content.ReadAsStringAsync();
361-
Assert.Contains("KDF settings are invalid", content);
361+
Assert.Contains("The model state is invalid", content);
362362
}
363363

364364
[Fact]

0 commit comments

Comments
 (0)