From 5a0997ded552b06949ac06a0a2503cac63362941 Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 17 Jan 2018 09:52:01 +0000 Subject: [PATCH] lint --- spec/integ/devicelist-integ-spec.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/spec/integ/devicelist-integ-spec.js b/spec/integ/devicelist-integ-spec.js index ead156fbf..6435c6771 100644 --- a/spec/integ/devicelist-integ-spec.js +++ b/spec/integ/devicelist-integ-spec.js @@ -198,8 +198,9 @@ describe("DeviceList management:", function() { } const chrisStat = data.trackingStatus['@chris:abc']; if (chrisStat != 1 && chrisStat != 2) { - throw new Error('Unexpected status for chris: wanted 1 or 2, got ' + - chrisStat); + throw new Error( + 'Unexpected status for chris: wanted 1 or 2, got ' + chrisStat, + ); } }); @@ -227,8 +228,9 @@ describe("DeviceList management:", function() { expect(bobStat).toEqual(3); const chrisStat = data.trackingStatus['@chris:abc']; if (chrisStat != 1 && chrisStat != 2) { - throw new Error('Unexpected status for chris: wanted 1 or 2, got ' + - bobStat); + throw new Error( + 'Unexpected status for chris: wanted 1 or 2, got ' + bobStat, + ); } });