Skip to content

Commit f96bdc1

Browse files
committed
PUB-2365 - Added linting
1 parent a8392c0 commit f96bdc1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/test/unit/service/CreateAccountService.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -372,9 +372,7 @@ describe('Create Account Service', () => {
372372
await createAccountService.createMediaAccount(validMediaPayload, validEmail);
373373
sinon.assert.calledWithMatch(
374374
createPIAccStub,
375-
sinon.match((arg) =>
376-
arg[0].roles === 'VERIFIED'
377-
),
375+
sinon.match(arg => arg[0].roles === 'VERIFIED'),
378376
validEmail
379377
);
380378
});

0 commit comments

Comments
 (0)