diff options
author | EuAndreh <eu@euandre.org> | 2021-01-24 01:42:29 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-24 01:42:29 -0300 |
commit | a6e60d3c646b79c38143ca3aaf0deac3ce447677 (patch) | |
tree | 60aabf71c24b3b2ffd63084a55d1cb10e278596a | |
parent | Makefile: Clean tests/test-profiles/ on "clean" target (diff) | |
download | remembering-a6e60d3c646b79c38143ca3aaf0deac3ce447677.tar.gz remembering-a6e60d3c646b79c38143ca3aaf0deac3ce447677.tar.xz |
cli-opts.sh: Break long line
-rwxr-xr-x | tests/cli-opts.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/cli-opts.sh b/tests/cli-opts.sh index 5edbc17..7c177df 100755 --- a/tests/cli-opts.sh +++ b/tests/cli-opts.sh @@ -71,7 +71,11 @@ test_flags_without_required_argument() { test_valid_options() { OUT="$(mktemp)" ERR="$(mktemp)" - printf 'a\nb\nc\n' | sh remembering -p "always-unique-$(uuidgen)" -c 'head -n1' 1>"$OUT" 2>"$ERR" + printf 'a\nb\nc\n' | \ + sh remembering \ + -p "always-unique-$(uuidgen)" \ + -c 'head -n1' \ + 1>"$OUT" 2>"$ERR" STATUS=$? assert_status 0 if [ "$(cat "$OUT")" != 'a' ]; then |