Hi
-
after run
phx.gen.auth Users User users
command, all the test passed. -
I update the private function
fromdefp validate_password(changeset, opts) do changeset |> validate_required([:password]) |> validate_length(:password, min: 12, max: 72) end
to
defp validate_password(changeset, opts) do changeset |> validate_required([:password]) |> validate_length(:password, min: 6, max: 72) end
-
replace 12 characters to 6 characters in all test files as the following
However, I got 8 test failed like the following
Is there any other place I need to modify to make the 8 tests passed?
Thanks!