diff options
author | SZEDER Gábor <szeder.dev@gmail.com> | 2019-03-22 15:27:25 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-03-24 21:37:07 +0900 |
commit | 0b918b75af41667074b4348afb58190448984314 (patch) | |
tree | 7838cc63c67a24eeaf6526a229dc5ae4db0b309e | |
parent | mingw: allow building with an MSYS2 runtime v3.x (diff) | |
download | tgif-0b918b75af41667074b4348afb58190448984314.tar.xz |
t5318-commit-graph: remove unused variable
This is a remnant from early versions of the commit-graph patch series
[1], when 'git commit-graph --write' printed the hash of the created
commit-graph file, and tests did look at the command's output, because
the commit-graph file's name included that hash as well.
[1] https://public-inbox.org/git/1517348383-112294-6-git-send-email-dstolee@microsoft.com/
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t5318-commit-graph.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5318-commit-graph.sh b/t/t5318-commit-graph.sh index 561796f280..069e4e28e4 100755 --- a/t/t5318-commit-graph.sh +++ b/t/t5318-commit-graph.sh @@ -75,7 +75,7 @@ graph_read_expect() { test_expect_success 'write graph' ' cd "$TRASH_DIRECTORY/full" && - graph1=$(git commit-graph write) && + git commit-graph write && test_path_is_file $objdir/info/commit-graph && graph_read_expect "3" ' |