Merge branch 'sg/t3903-missing-fix'

Test fixes.

* sg/t3903-missing-fix:
  t3903-stash: don't try to grep non-existing file
This commit is contained in:
Junio C Hamano 2018-08-27 14:33:48 -07:00
Родитель 1d27164f1a 79b04f9b60
Коммит 5f0ed3e204
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -724,7 +724,7 @@ test_expect_success 'store updates stash ref and reflog' '
git add bazzy &&
STASH_ID=$(git stash create) &&
git reset --hard &&
! grep quux bazzy &&
test_path_is_missing bazzy &&
git stash store -m quuxery $STASH_ID &&
test $(git rev-parse stash) = $STASH_ID &&
git reflog --format=%H stash| grep $STASH_ID &&