summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2022-02-14 12:30:30 -0500
committerGitHub <noreply@github.com>2022-02-14 12:30:30 -0500
commit3d5b6852a06e4aaf2ae8e3b02a3b2e4e59429f22 (patch)
treebf8614847eecec3541b10f26b42f368ebbed0e27 /tests
parentb66d1d371709205525128fcd80ca302630f8ac9e (diff)
Fix hyperlink absolute paths (#939)0.12.0
Fix file paths and hyperlinks With this commit the target of a hyperlink should always be an absolute path. This should be true for all file hyperlinks, e.g. - File hyperlink - Hunk header hyperlink - Line number hyperlink Fixes #890
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 c71631fb..ec34cbdb 100755
--- a/tests/test_raw_output_matches_git_on_full_repo_history
+++ b/tests/test_raw_output_matches_git_on_full_repo_history
@@ -6,4 +6,4 @@ DELTA="$DELTA_BIN --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)
+diff -u <(git $GIT_ARGS | $ANSIFILTER) <(git $GIT_ARGS | DELTA_FEATURES= $DELTA | $ANSIFILTER)