diff --git a/tests/t_argon2.nim b/tests/t_argon2.nim index c232027..2ac8605 100644 --- a/tests/t_argon2.nim +++ b/tests/t_argon2.nim @@ -146,6 +146,7 @@ suite "Argon2 specific": # Given let argonCommand = fmt"echo -n {password} | argon2 {saltStr} -v 13 -id -p 1 -k {memoryLimitInKiB} -t {iterations} -l {hashLength} -e" let cliEncodedHash = execCmdEx(argonCommand).output + echo cliEncodedHash.split('$') # TODO: Remove var cliHash: Hash = cliEncodedHash.split('$')[^1].decode() # When