Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
fix: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
justinemmanuelmercado committed Jul 15, 2020
1 parent 0de78b9 commit 25330f5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ export class FulfillmentInboundShipment {
})

return ListInboundShipmentItemsByNextTokenResponse.decode(response).caseOf({
Right: (x) => [x.ListInboundShipmentItemsByNextTokenResponse.ListInboundShipmentItemsByNextTokenResult, meta],
Right: (x) => [
x.ListInboundShipmentItemsByNextTokenResponse.ListInboundShipmentItemsByNextTokenResult,
meta,
],
Left: (error) => {
throw new ParsingError(error)
},
Expand Down
4 changes: 3 additions & 1 deletion test/unit/fulfillment-inbound-shipment.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ describe('fulfillmentInboundShipment', () => {
)

expect(
await mockListInboundShipmentItemsByNextToken.fulfillmentInboundShipment.listInboundShipmentItemsByNextToken(mockNextToken),
await mockListInboundShipmentItemsByNextToken.fulfillmentInboundShipment.listInboundShipmentItemsByNextToken(
mockNextToken,
),
).toMatchSnapshot()
})

Expand Down

0 comments on commit 25330f5

Please sign in to comment.