diff --git a/haskell-docs.cabal b/haskell-docs.cabal
--- a/haskell-docs.cabal
+++ b/haskell-docs.cabal
@@ -1,5 +1,5 @@
 name:                haskell-docs
-version:             4.1.1
+version:             4.1.2
 synopsis:            A program to find and display the docs of a name from a
                      given module.
 description:         Given a module name and a name, it will find and display
diff --git a/src/test/Main.hs b/src/test/Main.hs
--- a/src/test/Main.hs
+++ b/src/test/Main.hs
@@ -35,6 +35,7 @@
         (withInitializedPackages
            []
            (void (searchAndPrintDoc
+                    False
                     Nothing
                     (Just (makeModuleName "System.IO"))
                     (Identifier "hSetBuffering"))))
@@ -42,6 +43,7 @@
         (withInitializedPackages
            []
            (void (searchAndPrintDoc
+                    False
                     Nothing
                     Nothing
                     (Identifier "hSetBuffering"))))
@@ -53,6 +55,7 @@
         (withInitializedPackages
            []
            (do void (searchAndPrintDoc
+                      False
                       Nothing
                       (Just (makeModuleName "System.IO"))
                       (Identifier "hSetBuffering"))
