Skip to content

Commit c364310

Browse files
ilya-bobyrgitster
authored andcommitted
t/t4209-log-pickaxe: Naming typo: -G takes a regex
Not effect on the test logic, but as "-G" argument is a regex it is more accurate to use "regex" as a dummy argument value rather than "string". In all the other case when "-G" is passed a dummy value it is spelled as "regex" rather than as "string". Signed-off-by: Junio C Hamano <[email protected]>
1 parent bc204b7 commit c364310

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t4209-log-pickaxe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ test_expect_success 'usage: --no-pickaxe-regex' '
8989
test_expect_code 128 git log -Sstring --no-pickaxe-regex 2>actual &&
9090
test_cmp expect actual &&
9191
92-
test_expect_code 128 git log -Gstring --no-pickaxe-regex 2>err &&
92+
test_expect_code 128 git log -Gregex --no-pickaxe-regex 2>err &&
9393
test_cmp expect actual
9494
'
9595

0 commit comments

Comments
 (0)