summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-08-06 12:52:22 -0700
committerJunio C Hamano <gitster@pobox.com>2021-08-06 12:52:22 -0700
commitaa7d2fe3550762b8405734894faad4a5d1ab482c (patch)
treea4f2895aafb44e4a899f978c77652a4e61df876d
parent55194925e62b34a3f62b31034f73a6bcfb063bc5 (diff)
parent4da8b2fcd4f7b993ffd3ecf59d279c97fe23b0df (diff)
Merge branch 'cb/t7508-regexp-fix'
* cb/t7508-regexp-fix: t7508: avoid non POSIX BRE
-rwxr-xr-xt/t7508-status.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7508-status.sh b/t/t7508-status.sh
index 2b72451ba3..05c6c02435 100755
--- a/t/t7508-status.sh
+++ b/t/t7508-status.sh
@@ -882,7 +882,7 @@ test_expect_success 'status shows detached HEAD properly after checking out non-
git clone upstream downstream &&
git -C downstream checkout @{u} &&
git -C downstream status >actual &&
- test_i18ngrep "HEAD detached at [0-9a-f]\\+" actual
+ grep -E "HEAD detached at [0-9a-f]+" actual
'
test_expect_success 'setup status submodule summary' '