diff options
author | EuAndreh <eu@euandre.org> | 2025-05-15 13:23:59 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-15 15:13:15 -0300 |
commit | 81f0c44d475e57fd56c6d8009e0c88f65d2fd84e (patch) | |
tree | fb2708925293b0bb7cdf3ab81d4df19c0b0d5af9 /tests/integration.sh | |
parent | rm -rf tests/functional/version/ (diff) | |
download | scrypt-81f0c44d475e57fd56c6d8009e0c88f65d2fd84e.tar.gz scrypt-81f0c44d475e57fd56c6d8009e0c88f65d2fd84e.tar.xz |
src/scrypt.go: Improve CLI handling, add tests alongside
Diffstat (limited to 'tests/integration.sh')
-rwxr-xr-x | tests/integration.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration.sh b/tests/integration.sh index e31ae4d..8115ce5 100755 --- a/tests/integration.sh +++ b/tests/integration.sh @@ -13,7 +13,7 @@ test_needs_minimum_salt_length() { trap 'rm -f "$OUT" "$ERR"' EXIT STATUS=0 ./scrypt.bin password salt 1>"$OUT" 2>"$ERR" || STATUS=$? - assert_status 2 + assert_status 1 assert_empty_stdout assert_fgrep_stderr 'salt is too small' rm -f "$OUT" "$ERR" |