1
0
mirror of https://github.com/git/git.git synced 2024-09-28 20:51:42 +02:00

Merge branch 'jc/t9800-fix-use-of-show-s-raw'

A test fix.

* jc/t9800-fix-use-of-show-s-raw:
  t9800: correct misuse of 'show -s --raw' in a test
This commit is contained in:
Junio C Hamano 2023-05-15 13:59:05 -07:00
commit 3fb8a0f0a2

@ -330,7 +330,7 @@ test_expect_success 'initial import time from top change time' '
test_when_finished cleanup_git &&
(
cd "$git" &&
gittime=$(git show -s --raw --pretty=format:%at HEAD) &&
gittime=$(git show -s --pretty=format:%at HEAD) &&
echo $p4time $gittime &&
test $p4time = $gittime
)