Ignore deprecation warning in StreamingSpec
We cannot use the recommended replacement `requestBody` => `getRequestBodyChunk`, because we are actually interested in the record selector, not the `Request -> IO ByteString` function.
This commit is contained in:
parent
7da7f4eb35
commit
2a4c147448
1 changed files with 2 additions and 0 deletions
|
@ -4,6 +4,8 @@
|
|||
{-# LANGUAGE TupleSections #-}
|
||||
{-# LANGUAGE TypeOperators #-}
|
||||
|
||||
{-# OPTIONS_GHC -fno-warn-deprecations #-}
|
||||
|
||||
-- | This module tests whether streaming works from client to server
|
||||
-- with a server implemented with servant-server.
|
||||
module Servant.Server.StreamingSpec where
|
||||
|
|
Loading…
Reference in a new issue