unbreak tests

pull/21833/head
Matthew Hodgson 2016-09-07 21:10:31 +01:00
parent 8f75bce29e
commit 334564c814
2 changed files with 3 additions and 2 deletions

View File

@ -92,7 +92,7 @@ var TimelinePanel = React.createClass({
timelineCap: React.PropTypes.number,
// classname to use for the messagepanel
className: React.PropTypes.string.isRequired,
className: React.PropTypes.string,
},
statics: {
@ -106,6 +106,7 @@ var TimelinePanel = React.createClass({
getDefaultProps: function() {
return {
timelineCap: 250,
className: 'mx_RoomView_messagePanel',
};
},

View File

@ -61,10 +61,10 @@ describe('TimelinePanel', function() {
timeline = new jssdk.EventTimeline(ROOM_ID);
room = sinon.createStubInstance(jssdk.Room);
room.getPendingEvents.returns([]);
timelineSet = sinon.createStubInstance(jssdk.EventTimelineSet);
timelineSet.getLiveTimeline.returns(timeline);
timelineSet.getPendingEvents.returns([]);
timelineSet.room = room;
client = peg.get();