Remove redundant function argument to expectStringResponse and expectBytesResponse.

This commit is contained in:
Dillon Kearns 2022-02-27 08:44:00 -08:00
parent 68fe1c2539
commit 39ec2d3d4f

View File

@ -215,15 +215,15 @@ expectWhatever =
{-| -}
expectStringResponse : (Response String -> value) -> Expect value
expectStringResponse : Expect (Response String)
expectStringResponse =
ExpectResponse
ExpectResponse identity
{-| -}
expectBytesResponse : (Response Bytes -> value) -> Expect value
expectBytesResponse : Expect (Response Bytes)
expectBytesResponse =
ExpectBytesResponse
ExpectBytesResponse identity
expectToString : Expect a -> String