aboutsummaryrefslogtreecommitdiffstats
path: root/t/helper/test-read-graph.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-08-17 09:27:08 -0700
committerJunio C Hamano <gitster@pobox.com>2025-08-17 09:27:08 -0700
commite2889596bed4482c1b5ceaf3947d1aa01222b51e (patch)
treeb64781b4b57d091063149d5333d5261f1dd6a2c5 /t/helper/test-read-graph.c
parentMerge branch 'ds/doc-count-objects-fix' into next (diff)
parentcommit-graph: stop passing in redundant repository (diff)
downloadgit-e2889596bed4482c1b5ceaf3947d1aa01222b51e.tar.gz
git-e2889596bed4482c1b5ceaf3947d1aa01222b51e.zip
Merge branch 'ps/commit-graph-wo-globals' into next
Remove dependency on the_repository and other globals from the commit-graph code, and other changes unrelated to de-globaling. * ps/commit-graph-wo-globals: commit-graph: stop passing in redundant repository commit-graph: stop using `the_repository` commit-graph: stop using `the_hash_algo` commit-graph: refactor `parse_commit_graph()` to take a repository commit-graph: store the hash algorithm instead of its length commit-graph: stop using `the_hash_algo` via macros
Diffstat (limited to 't/helper/test-read-graph.c')
-rw-r--r--t/helper/test-read-graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/helper/test-read-graph.c b/t/helper/test-read-graph.c
index ef5339bbee..6a5f64e473 100644
--- a/t/helper/test-read-graph.c
+++ b/t/helper/test-read-graph.c
@@ -81,7 +81,7 @@ int cmd__read_graph(int argc, const char **argv)
prepare_repo_settings(the_repository);
- graph = read_commit_graph_one(the_repository, source);
+ graph = read_commit_graph_one(source);
if (!graph) {
ret = 1;
goto done;