On Fri, 8 Jun 2018 at 15:56, Derrick Stolee <[email protected]> wrote:
> [..], the following
> diff occurs from the previous patch:
[...]
> diff --git a/t/t5318-commit-graph.sh b/t/t5318-commit-graph.sh
> index b24e8b6689..9a0661983c 100755
> --- a/t/t5318-commit-graph.sh
> +++ b/t/t5318-commit-graph.sh
> @@ -33,8 +33,8 @@ test_expect_success 'create commits and repack' '
> '
>
> graph_git_two_modes() {
> - git -c core.commitGraph=true $1 >output
> - git -c core.commitGraph=false $1 >expect
> + git -c core.graph=true $1 >output
> + git -c core.graph=false $1 >expect
> test_cmp output expect
> }
It seems that you have accidentally removed the fix from previous version.
It needs to be core.commitGraph, not core.graph.
Best,
--
Jakub Narębski