diff --git a/hspec-expectations-lifted.cabal b/hspec-expectations-lifted.cabal
--- a/hspec-expectations-lifted.cabal
+++ b/hspec-expectations-lifted.cabal
@@ -1,5 +1,5 @@
 name:             hspec-expectations-lifted
-version:          0.9.0
+version:          0.10.0
 synopsis:         A version of hspec-expectations generalized to MonadIO
 description:      A version of hspec-expectations generalized to MonadIO
 license:          MIT
diff --git a/src/Test/Hspec/Expectations/Lifted.hs b/src/Test/Hspec/Expectations/Lifted.hs
--- a/src/Test/Hspec/Expectations/Lifted.hs
+++ b/src/Test/Hspec/Expectations/Lifted.hs
@@ -95,5 +95,5 @@
 -- |
 -- @action \`shouldNotReturn\` notExpected@ sets the expectation that @action@
 -- does not return @notExpected@.
-shouldNotReturn :: (HasCallStack, MonadIO m, Show a, Eq a) => IO a -> a -> m ()
-shouldNotReturn = liftIO2 E.shouldNotReturn
+shouldNotReturn :: (HasCallStack, MonadIO m, Show a, Eq a) => m a -> a -> m ()
+shouldNotReturn action expected = action >>= liftIO . (`E.shouldNotBe` expected)
