Fixing test coverage for CreateUserAsync

This commit is contained in:
2025-03-23 22:37:10 +01:00
parent 9d2b2405d5
commit 030882f3e1
2 changed files with 7 additions and 4 deletions

View File

@@ -124,7 +124,9 @@ public class UserService : BaseService, IUserService
}
catch (Exception exception)
{
await transaction.RollbackAsync();
Logger.Error(exception, $"[UserService][CreateUserAsync]");
throw;
}