refactor: implement more review comments
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon 2026-01-28 14:47:30 +01:00
parent ea3bdcaa65
commit c3ad8894b0
Signed by: simon
GPG key ID: 40E7A58C4AA1EDB2
2 changed files with 9 additions and 9 deletions

View file

@ -124,7 +124,8 @@ defmodule MvWeb.UserLive.FormTest do
system_actor = Mv.Helpers.SystemActor.get_system_actor()
updated_user = Ash.reload!(user, domain: Mv.Accounts, actor: system_actor)
assert updated_user.hashed_password != original_password
assert String.starts_with?(updated_user.hashed_password, "$2b$")
assert not is_nil(updated_user.hashed_password)
assert updated_user.hashed_password != ""
end
end