summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-05-15 13:59:05 -0700
committerJunio C Hamano <gitster@pobox.com>2023-05-15 13:59:05 -0700
commit3fb8a0f0a24cc265112a96db52117d15232adc25 (patch)
tree727a08604838055fd430934175786bc1b241a135
parent1e1dcb2a423cad350e8f20fdcc957064e5cff528 (diff)
parentb7cf25c8f486b3b9a99b2bbe68f158bc24f87b1c (diff)
downloadgit-3fb8a0f0a24cc265112a96db52117d15232adc25.tar.gz
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
-rwxr-xr-xt/t9800-git-p4-basic.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9800-git-p4-basic.sh b/t/t9800-git-p4-basic.sh
index dc88d0e064..a4b3cb9492 100755
--- a/t/t9800-git-p4-basic.sh
+++ b/t/t9800-git-p4-basic.sh
@@ -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
)