From 632e11971bba976f7fca647fc060ef5afbbd2d12 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 31 Aug 2026 21:22:55 -0700 Subject: [PATCH] fixup! last-modified: check pathspec against Bloom filter first --- t/t8020-last-modified.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t/t8020-last-modified.sh b/t/t8020-last-modified.sh index 75b18ee83b..a1ff351822 100755 --- a/t/t8020-last-modified.sh +++ b/t/t8020-last-modified.sh @@ -281,8 +281,10 @@ test_expect_success 'last-modified with Bloom filters and --show-trees' ' test_commit touch-b d/b && git commit-graph write --reachable --changed-paths && + GIT_TEST_COMMIT_GRAPH=0 \ git -c core.commitGraph=false last-modified -t HEAD -- d/a \ >expect && + GIT_TEST_COMMIT_GRAPH=1 \ git -c core.commitGraph=true last-modified -t HEAD -- d/a \ >actual &&