diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-12-01 09:04:39 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-12-01 09:04:39 -0800 |
commit | 723a8adba5748a8acd0024e68276119d57eee6f8 (patch) | |
tree | e866d69dec9013963b3c4724996f07a087e1bd5f /t/t5318-commit-graph.sh | |
parent | Merge branch 'rs/use-copy-array-in-mingw-shell-command-preparation' (diff) | |
parent | test-tool: use 'read-graph' helper (diff) | |
download | tgif-723a8adba5748a8acd0024e68276119d57eee6f8.tar.xz |
Merge branch 'ds/test-read-graph'
Dev support for commit-graph feature.
* ds/test-read-graph:
test-tool: use 'read-graph' helper
Diffstat (limited to 't/t5318-commit-graph.sh')
-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 127b404856..5a3e4e331a 100755 --- a/t/t5318-commit-graph.sh +++ b/t/t5318-commit-graph.sh @@ -85,7 +85,7 @@ graph_read_expect() { num_commits: $1 chunks: oid_fanout oid_lookup commit_metadata$OPTIONAL EOF - git commit-graph read >output && + test-tool read-graph >output && test_cmp expect output } |