From 05a5e306fc235f245f43187082bdce3949574eac Mon Sep 17 00:00:00 2001 From: Mina Smart Date: Thu, 25 Feb 2016 16:17:55 -0500 Subject: [PATCH] attempt to fix weird eslint build error. - Reference: https://github.com/babel/babel-eslint/issues/243 --- tests/unit/api/shop-client-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/api/shop-client-test.js b/tests/unit/api/shop-client-test.js index 61af72560..bcdc9ff19 100644 --- a/tests/unit/api/shop-client-test.js +++ b/tests/unit/api/shop-client-test.js @@ -553,7 +553,7 @@ test('it utilizes the model\'s adapter and serializer during #update', function step(4, 'resolves update with the deserialized model', assert); assert.equal(localUpdatedModel, updatedModel); done(); - }).catch(e => { + }).catch(() => { assert.ok(false); done(); });