File tree Expand file tree Collapse file tree 4 files changed +7
-10
lines changed
test/integration/API/User Expand file tree Collapse file tree 4 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -216,10 +216,9 @@ handleTokenError =
216
216
217
217
handleTokenErrors :: [Either Text a ] -> Handler r [a ]
218
218
handleTokenErrors ts = case partitionEithers ts of
219
- ((e : _), [] ) ->
220
- ( throwStd
221
- . Wai. mkError status403 " client-error"
222
- . LT. fromStrict
223
- $ e
224
- )
219
+ (e : _, [] ) ->
220
+ throwStd
221
+ . Wai. mkError status403 " client-error"
222
+ . LT. fromStrict
223
+ $ e
225
224
(_, vs) -> pure vs
Original file line number Diff line number Diff line change 1
- {-# LANGUAGE TemplateHaskell #-}
2
-
3
1
module Brig.API.Public.Swagger
4
2
( SwaggerDocsAPI ,
5
3
pregenSwagger ,
Original file line number Diff line number Diff line change @@ -724,7 +724,7 @@ deleteAccountH ::
724
724
ExceptT Error (AppT r ) Response
725
725
deleteAccountH (pid ::: req) = do
726
726
guardSecondFactorDisabled Nothing
727
- empty <$ ( mapExceptT wrapHttpClient $ deleteAccount pid =<< parseJsonBody req)
727
+ empty <$ mapExceptT wrapHttpClient ( deleteAccount pid =<< parseJsonBody req)
728
728
729
729
deleteAccount ::
730
730
( MonadReader Env m ,
Original file line number Diff line number Diff line change @@ -444,7 +444,7 @@ testClientsWithoutPrekeys brig cannon db opts = do
444
444
!!! do
445
445
const 200 === statusCode
446
446
const
447
- ( Right $
447
+ ( Right
448
448
( expectedClientMap
449
449
domain
450
450
uid1
You can’t perform that action at this time.
0 commit comments