@@ -49,8 +49,8 @@ test_atom head refname refs/heads/master
49
49
test_atom head upstream refs/remotes/origin/master
50
50
test_atom head objecttype commit
51
51
test_atom head objectsize 171
52
- test_atom head objectname 67a36f10722846e891fbada1ba48ed035de75581
53
- test_atom head tree 0e51c00fcb93dffc755546f27593d511e1bdb46f
52
+ test_atom head objectname $( git rev-parse refs/heads/master )
53
+ test_atom head tree $( git rev-parse refs/heads/master^{tree} )
54
54
test_atom head parent ' '
55
55
test_atom head numparent 0
56
56
test_atom head object ' '
@@ -82,11 +82,11 @@ test_atom tag refname refs/tags/testtag
82
82
test_atom tag upstream ' '
83
83
test_atom tag objecttype tag
84
84
test_atom tag objectsize 154
85
- test_atom tag objectname 98b46b1d36e5b07909de1b3886224e3e81e87322
85
+ test_atom tag objectname $( git rev-parse refs/tags/testtag )
86
86
test_atom tag tree ' '
87
87
test_atom tag parent ' '
88
88
test_atom tag numparent ' '
89
- test_atom tag object ' 67a36f10722846e891fbada1ba48ed035de75581 '
89
+ test_atom tag object $( git rev-parse refs/tags/testtag^0 )
90
90
test_atom tag type ' commit'
91
91
test_atom tag author ' '
92
92
test_atom tag authorname ' '
@@ -302,7 +302,7 @@ test_expect_success 'Check short upstream format' '
302
302
'
303
303
304
304
cat > expected << EOF
305
- 67a36f1
305
+ $( git rev-parse --short HEAD )
306
306
EOF
307
307
308
308
test_expect_success ' Check short objectname format' '
@@ -453,9 +453,9 @@ test_atom refs/tags/signed-long contents "subject line
453
453
body contents
454
454
$sig "
455
455
456
- cat > expected << \ EOF
457
- 408fe76d02a785a006c2e9c669b7be5589ede96d <[email protected] > refs/tags/master
458
- 90b5ebede4899eda64893bc2a4c8f1d6fb6dfc40 <[email protected] > refs/tags/bogo
456
+ cat > expected << EOF
457
+ $( git rev-parse refs/tags/master ) <[email protected] > refs/tags/master
458
+ $( git rev-parse refs/tags/bogo ) <[email protected] > refs/tags/bogo
459
459
EOF
460
460
461
461
test_expect_success ' Verify sort with multiple keys' '
0 commit comments