t1405: sort reflog entries in a hash-independent way
[gitweb.git] / t / t1300-repo-config.sh
index 4f8e6f5fde3295cc91d2feb1fd85fa007e56016c..dc7e6c2e775777d3cecf923006cba7be503708bb 100755 (executable)
@@ -1587,10 +1587,10 @@ test_expect_success '--show-origin stdin with file include' '
 '
 
 test_expect_success !MINGW '--show-origin blob' '
-       cat >expect <<-\EOF &&
-               blob:a9d9f9e555b5c6f07cbe09d3f06fe3df11e09c08   user.custom=true
-       EOF
        blob=$(git hash-object -w "$CUSTOM_CONFIG_FILE") &&
+       cat >expect <<-EOF &&
+               blob:$blob      user.custom=true
+       EOF
        git config --blob=$blob --show-origin --list >output &&
        test_cmp expect output
 '