diff options
author | EuAndreh <eu@euandre.org> | 2021-07-26 10:30:06 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-07-26 10:41:49 -0300 |
commit | 4670d66a180e23dcea533f9c47b618c5ed0043f1 (patch) | |
tree | 576a63f960758ef9c4dd4c7dcc40d5135fad5e27 /tests/remotes.sh | |
parent | aux/ci/: Point to /srv/http instead of /srv/git (diff) | |
download | git-permalink-4670d66a180e23dcea533f9c47b618c5ed0043f1.tar.gz git-permalink-4670d66a180e23dcea533f9c47b618c5ed0043f1.tar.xz |
src/, tests/: Stick to 80 columns with 8-chars wide tabs
Diffstat (limited to 'tests/remotes.sh')
-rwxr-xr-x | tests/remotes.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/remotes.sh b/tests/remotes.sh index 7b1ba92..76aea04 100755 --- a/tests/remotes.sh +++ b/tests/remotes.sh @@ -165,7 +165,8 @@ test_unsupported_remote() { N="$LINENO" OUT="$(mkstemp)" ERR="$(mkstemp)" - git config git-permalink.template-commit-file 'before %s middle %s after' + git config git-permalink.template-commit-file \ + 'before %s middle %s after' git permalink -p README.md 123 1>"$OUT" 2>"$ERR" STATUS=$? assert_status 0 @@ -176,7 +177,8 @@ test_unsupported_remote() { OUT="$(mkstemp)" ERR="$(mkstemp)" git config --unset git-permalink.template-commit-file - git config git-permalink.template-file-commit 'before %s middle %s after' + git config git-permalink.template-file-commit \ + 'before %s middle %s after' git permalink -p README.md 123 1>"$OUT" 2>"$ERR" STATUS=$? assert_status 0 |