test-lib-functions.sh: remove misleading comment on test_seq
[gitweb.git] / t / t3903-stash.sh
index 7396ca991132a88012955a281a71c330eab2092b..f5f18b7d21c00da258125a9125a46b32cf9e8504 100755 (executable)
@@ -45,13 +45,6 @@ test_expect_success 'applying bogus stash does nothing' '
        test_cmp expect file
 '
 
-test_expect_success 'apply requires a clean index' '
-       test_when_finished "git reset --hard" &&
-       echo changed >other-file &&
-       git add other-file &&
-       test_must_fail git stash apply
-'
-
 test_expect_success 'apply does not need clean working directory' '
        echo 4 >other-file &&
        git stash apply &&