aboutsummaryrefslogtreecommitdiffstats
path: root/t/t2106-update-index-assume-unchanged.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/t2106-update-index-assume-unchanged.sh')
-rwxr-xr-xt/t2106-update-index-assume-unchanged.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/t/t2106-update-index-assume-unchanged.sh b/t/t2106-update-index-assume-unchanged.sh
index d943ddf47e..6b2ccc21a9 100755
--- a/t/t2106-update-index-assume-unchanged.sh
+++ b/t/t2106-update-index-assume-unchanged.sh
@@ -3,7 +3,6 @@
test_description='git update-index --assume-unchanged test.
'
-TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh
test_expect_success 'setup' '
@@ -22,7 +21,7 @@ test_expect_success 'do not switch branches with dirty file' '
echo dirt >file &&
git update-index --assume-unchanged file &&
test_must_fail git checkout - 2>err &&
- test_i18ngrep overwritten err
+ test_grep overwritten err
'
test_done