From 452363751ce663a2172279d994aa9489248cadf3 Mon Sep 17 00:00:00 2001 From: Carlos Jimenez <=> Date: Tue, 6 Nov 2018 08:56:06 +0100 Subject: [PATCH] indentation --- .../common/methods/claim/specs/createFromSales.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/claim/common/methods/claim/specs/createFromSales.spec.js b/services/claim/common/methods/claim/specs/createFromSales.spec.js index 8e770fd7f..adf657393 100644 --- a/services/claim/common/methods/claim/specs/createFromSales.spec.js +++ b/services/claim/common/methods/claim/specs/createFromSales.spec.js @@ -4,7 +4,7 @@ describe('Claim Create', () => { let newDate = new Date(); let createdClaimFk; - afterAll(async() => { + afterAll(async () => { await app.models.Claim.destroyById(createdClaimFk); }); @@ -23,7 +23,7 @@ describe('Claim Create', () => { let params = {claim: newClaim, sales: newSale}; - it('should create a new claim', async() => { + it('should create a new claim', async () => { let claim = await app.models.Claim.createFromSales(params); expect(claim.ticketFk).toEqual(newClaim.ticketFk); @@ -39,7 +39,7 @@ describe('Claim Create', () => { createdClaimFk = claim.id; }); - it('should not be able to create a claim if exists that sale', async() => { + it('should not be able to create a claim if exists that sale', async () => { let error; await app.models.Claim.createFromSales(params)