diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,7 @@
+## 0.1.5
+
+* Fix test
+
 ## 0.1.4
 
 * Add library and test
diff --git a/cabal-test-bin.cabal b/cabal-test-bin.cabal
--- a/cabal-test-bin.cabal
+++ b/cabal-test-bin.cabal
@@ -1,5 +1,5 @@
 name:                cabal-test-bin
-version:             0.1.4
+version:             0.1.5
 synopsis:            A program for finding temporary build file during cabal-test.
 description:         cabal-test-bin finds exe-file for cabal test below
                      .
diff --git a/tests/test.hs b/tests/test.hs
--- a/tests/test.hs
+++ b/tests/test.hs
@@ -17,6 +17,6 @@
       `catch`
       (\(_::SomeException) -> (getExePath "." "cabal-test-bin" `shouldReturnRegex` "./dist/dist-sandbox-(.*)/cabal-test-bin/cabal-test-bin"))
     it "getExeDir" $ do
-      (getExePath "." "cabal-test-bin" `shouldReturn` "./dist/build/cabal-test-bin")
+      (getExeDir "." "cabal-test-bin" `shouldReturn` "./dist/build/cabal-test-bin")
       `catch`
-      (\(_::SomeException) -> (getExePath "." "cabal-test-bin" `shouldReturnRegex` "./dist/dist-sandbox-(.*)/cabal-test-bin"))
+      (\(_::SomeException) -> (getExeDir "." "cabal-test-bin" `shouldReturnRegex` "./dist/dist-sandbox-(.*)/cabal-test-bin"))
