From 2676c01f6b86d9fec05ed96d419aa1ce2c3d490e Mon Sep 17 00:00:00 2001 From: Timo Notheisen <65653426+tnotheis@users.noreply.github.com> Date: Mon, 28 Oct 2024 13:58:41 +0100 Subject: [PATCH] Creation of test users fails due to other password requirements (#927) * chore: add uppercase letter, digit and non-alphanumeric character to passwords * chore: change password --- .../Users/Commands/SeedTestUsers/Handler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Devices/src/Devices.Application/Users/Commands/SeedTestUsers/Handler.cs b/Modules/Devices/src/Devices.Application/Users/Commands/SeedTestUsers/Handler.cs index fd5b3a1523..81446d8519 100644 --- a/Modules/Devices/src/Devices.Application/Users/Commands/SeedTestUsers/Handler.cs +++ b/Modules/Devices/src/Devices.Application/Users/Commands/SeedTestUsers/Handler.cs @@ -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!"); } }