From b9ace61ccbeaa65eae864dc9149c260eeef687fb Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Sat, 7 Nov 2015 20:26:16 +0000 Subject: [PATCH] split long lines --- spec/unit/room.spec.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spec/unit/room.spec.js b/spec/unit/room.spec.js index 987896705..152ed65a5 100644 --- a/spec/unit/room.spec.js +++ b/spec/unit/room.spec.js @@ -814,14 +814,16 @@ describe("Room", function() { describe("addTag", function() { - it("should set tags on rooms from event stream so they can be obtained by the tags property", + it("should set tags on rooms from event stream so " + + "they can be obtained by the tags property", function() { var tags = { "m.foo": { "order": 0.5 } }; room.addTags(mkTags(roomId, tags)); expect(room.tags).toEqual(tags); }); - it("should emit Room.tags event when new tags are received on the event stream", + it("should emit Room.tags event when new tags are " + + "received on the event stream", function() { var listener = jasmine.createSpy('spy'); room.on("Room.tags", listener);