Skip to content

Commit 05e5ff0

Browse files
mtelkagitster
authored andcommitted
t/t4202-log.sh: fix misspelled variable
The GPGSSH_GOOD_SIGNATURE_TRUSTED variable was spelled as GOOD_SIGNATURE_TRUSTED and so the grep was used the null RE that matches everything. Signed-off-by: Marcel Telka <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ce09c69 commit 05e5ff0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t4202-log.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2022,7 +2022,7 @@ test_expect_success GPGSM 'log --graph --show-signature x509' '
20222022
test_expect_success GPGSSH 'log --graph --show-signature ssh' '
20232023
test_config gpg.ssh.allowedSignersFile "${GPGSSH_ALLOWED_SIGNERS}" &&
20242024
git log --graph --show-signature -n1 signed-ssh >actual &&
2025-
grep "${GOOD_SIGNATURE_TRUSTED}" actual
2025+
grep "${GPGSSH_GOOD_SIGNATURE_TRUSTED}" actual
20262026
'
20272027

20282028
test_expect_success GPGSSH,GPGSSH_VERIFYTIME 'log shows failure on expired signature key' '

0 commit comments

Comments
 (0)