From 8e47fe2968e207614277dcf129b6b6563c2fcebb Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Tue, 16 Feb 2016 22:32:50 +0000 Subject: [PATCH] Fix lint --- spec/unit/event-timeline.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/unit/event-timeline.spec.js b/spec/unit/event-timeline.spec.js index c9d5ee60b..86a4b785b 100644 --- a/spec/unit/event-timeline.spec.js +++ b/spec/unit/event-timeline.spec.js @@ -155,7 +155,7 @@ describe("EventTimeline", function() { timeline.addEvent(events[0], true); var initialIndex = timeline.getBaseIndex(); timeline.addEvent(events[1], true); - expect(timeline.getBaseIndex()).toEqual(initialIndex+1); + expect(timeline.getBaseIndex()).toEqual(initialIndex + 1); expect(timeline.getEvents().length).toEqual(2); expect(timeline.getEvents()[0]).toEqual(events[1]); expect(timeline.getEvents()[1]).toEqual(events[0]);