Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Chen committed Jul 8, 2020
1 parent 1e52247 commit 69d3589
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/PlaidClientTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ describe('plaid.Client', () => {
plaid.Client('client_id');
}).to.throwException(e => {
expect(e).to.be.ok();
expect(e.message).to.equal('Unexpected parameter type. Refer to https://github.com/plaid/plaid-node for how to create a Plaid client.');
expect(e.message).to.equal(
'Unexpected parameter type. Refer to ' +
'https://github.com/plaid/plaid-node ' +
'for how to create a Plaid client.'
);
});
});

Expand Down

0 comments on commit 69d3589

Please sign in to comment.