diff --git a/shelly.cabal b/shelly.cabal
--- a/shelly.cabal
+++ b/shelly.cabal
@@ -1,6 +1,6 @@
 Name:       shelly
 
-Version:     1.6.2.4
+Version:     1.6.2.5
 Synopsis:    shell-like (systems) programming in Haskell
 
 Description: Shelly provides convenient systems programming in Haskell,
diff --git a/test/src/WhichSpec.hs b/test/src/WhichSpec.hs
--- a/test/src/WhichSpec.hs
+++ b/test/src/WhichSpec.hs
@@ -5,11 +5,11 @@
 whichSpec :: Spec
 whichSpec = describe "which" $ do
     it "gives full path to cabal" $ do
-      Just _ <- shelly $ which "cabal"
+      Just _ <- shelly $ which "find"
       assert True
 
     it "recognizes cabal as a path executable" $ do
-      res <- shelly $ test_px "cabal"
+      res <- shelly $ test_px "find"
       True @?= res
  
     it "cannot find missing exe" $ do
