We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f565fa commit e56f3c1Copy full SHA for e56f3c1
1 file changed
SecurityService.IntegrationTests/Users/UsersSteps.cs
@@ -80,7 +80,9 @@ public async Task GivenICreateTheFollowingUsers(Table table)
80
MiddleName = SpecflowTableHelper.GetStringRowValue(tableRow, "Middle name"),
81
Claims = userClaims,
82
Roles = string.IsNullOrEmpty(roles) ? null : roles.Split(",").ToList(),
83
- };
+ Password= SpecflowTableHelper.GetStringRowValue(tableRow, "Password")
84
+ };
85
+
86
CreateUserResponse createUserResponse = await this.CreateUser(createUserRequest, CancellationToken.None).ConfigureAwait(false);
87
88
createUserResponse.ShouldNotBeNull();
0 commit comments