From 226c37e6fc8ae0aa2232ae93eeb05c92e85c121a Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Fri, 7 Nov 2008 15:02:10 +0100 Subject: [PATCH] Revert "t3903: Mark tests as broken on MinGW" This reverts commit fe3238dc4c870cb865bd2862f317afeb35018267, which worked around the bug that stash@{1} was not transfered correctly down the command invocation chain. But this bug was fixed later, so this workaround is not necessary anymore. --- t/t3903-stash.sh | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh index 7cb4e177b6..7484cbede6 100755 --- a/t/t3903-stash.sh +++ b/t/t3903-stash.sh @@ -88,11 +88,7 @@ test_expect_success 'drop top stash' ' test 1 = $(git show HEAD:file) ' -case $(uname -s) in -*MINGW*) test_expect=test_expect_failure;; -*) test_expect=test_expect_success;; -esac -$test_expect 'drop middle stash' ' +test_expect_success 'drop middle stash' ' git reset --hard && echo 8 > file && git stash && @@ -112,11 +108,7 @@ $test_expect 'drop middle stash' ' test 1 = $(git show HEAD:file) ' -case $(uname -s) in -*MINGW*) test_expect=test_expect_failure;; -*) test_expect=test_expect_success;; -esac -$test_expect 'stash pop' ' +test_expect_success 'stash pop' ' git reset --hard && git stash pop && test 3 = $(cat file) &&