mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-28 06:05:31 +03:00
Remove redundant function argument to expectStringResponse and expectBytesResponse.
This commit is contained in:
parent
68fe1c2539
commit
39ec2d3d4f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user