From c2c165c362b460a5e71c4d11e7d7483addd4846d Mon Sep 17 00:00:00 2001 From: mattwr18 Date: Wed, 4 Sep 2019 18:45:52 +0200 Subject: [PATCH] Fix lint --- webapp/components/Comment.spec.js | 2 +- webapp/components/CommentList/CommentList.spec.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/webapp/components/Comment.spec.js b/webapp/components/Comment.spec.js index 6303989f3..375280cea 100644 --- a/webapp/components/Comment.spec.js +++ b/webapp/components/Comment.spec.js @@ -63,7 +63,7 @@ describe('Comment.vue', () => { propsData.comment = { id: '2', contentExcerpt: 'Hello I am a comment content', - content: 'Hello I am comment content' + content: 'Hello I am comment content', } }) diff --git a/webapp/components/CommentList/CommentList.spec.js b/webapp/components/CommentList/CommentList.spec.js index 902770e53..0fa1e8b81 100644 --- a/webapp/components/CommentList/CommentList.spec.js +++ b/webapp/components/CommentList/CommentList.spec.js @@ -27,7 +27,9 @@ describe('CommentList.vue', () => { propsData = { post: { id: 1, - comments: [{ id: 'comment134', contentExcerpt: 'this is a comment', content: 'this is a comment' }], + comments: [ + { id: 'comment134', contentExcerpt: 'this is a comment', content: 'this is a comment' }, + ], }, } store = new Vuex.Store({