Skip to content

Commit d2663a5

Browse files
committed
update assertion to avoid test (false negative) failing closes #208
1 parent cbe1f69 commit d2663a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/lib/password_field_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ defmodule Encryption.PasswordFieldTest do
1616
{:ok, result} = Field.dump("password")
1717
# IO.inspect result, label: "result"
1818
assert is_binary(result)
19-
assert String.starts_with?(result, "$argon2id$v=19$m=256,t=1,p=2$")
19+
assert String.starts_with?(result, "$argon2id$v=19$m=256,t=1")
2020
end
2121

2222
test ".load does not modify the hash, since the hash cannot be reversed" do

0 commit comments

Comments
 (0)