summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-08-14 12:10:52 -0400
committerGitHub <noreply@github.com>2020-08-14 12:10:52 -0400
commitd4441fe24a36b1134b110680283929ec4fb23d24 (patch)
treece171b1e9ecd39e55087ecd100c5e34f0f753b55 /tests
parentde114e3ea52c82ab92f4cc52aefaf76e027a3f07 (diff)
Truncate long lines (#290)
Fixes #154, #288
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_raw_output_matches_git_on_full_repo_history2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_raw_output_matches_git_on_full_repo_history b/tests/test_raw_output_matches_git_on_full_repo_history
index 74148706..f212d2f4 100755
--- a/tests/test_raw_output_matches_git_on_full_repo_history
+++ b/tests/test_raw_output_matches_git_on_full_repo_history
@@ -1,5 +1,5 @@
#!/bin/bash
-DELTA="./target/release/delta --no-gitconfig --raw"
+DELTA="./target/release/delta --no-gitconfig --raw --max-line-length 0"
ANSIFILTER="./etc/bin/ansifilter"
GIT_ARGS="log --patch --stat --numstat"
diff -u <(git $GIT_ARGS | $ANSIFILTER) <(git $GIT_ARGS | $DELTA | $ANSIFILTER)