From 69d35895b77bf62f6aded7e528f4e567112d75c2 Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Sat, 6 Jun 2020 18:58:53 -0700 Subject: [PATCH] fix lint --- test/PlaidClientTest.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/PlaidClientTest.js b/test/PlaidClientTest.js index dcae1ed2..ebf7fa2b 100755 --- a/test/PlaidClientTest.js +++ b/test/PlaidClientTest.js @@ -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.' + ); }); });