Skip to content

Commit

Permalink
Creation of test users fails due to other password requirements (#927)
Browse files Browse the repository at this point in the history
* chore: add uppercase letter, digit and non-alphanumeric character to passwords

* chore: change password
  • Loading branch information
tnotheis authored Oct 28, 2024
1 parent 3b73579 commit 2676c01
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public async Task Handle(SeedTestUsersCommand request, CancellationToken cancell
var identityA = Identity.CreateTestIdentity(IdentityAddress.Create([1, 1, 1, 1, 1], _applicationOptions.DidDomainName), [1, 1, 1, 1, 1], basicTier!.Id, "USRa");
var identityB = Identity.CreateTestIdentity(IdentityAddress.Create([2, 2, 2, 2, 2], _applicationOptions.DidDomainName), [2, 2, 2, 2, 2], basicTier.Id, "USRb");

await _identitiesRepository.Add(identityA, "aaaaaaaaaa");
await _identitiesRepository.Add(identityB, "bbbbbbbbbb");
await _identitiesRepository.Add(identityA, "Aaaaaaaa1!");
await _identitiesRepository.Add(identityB, "Bbbbbbbb1!");
}
}

0 comments on commit 2676c01

Please sign in to comment.