From acebf94b838d18b605de1bced5356feda6061f31 Mon Sep 17 00:00:00 2001 From: senderfm Date: Wed, 10 Jul 2019 17:20:08 +0200 Subject: [PATCH] fix lint error --- webapp/components/ContributionForm/ContributionForm.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/components/ContributionForm/ContributionForm.spec.js b/webapp/components/ContributionForm/ContributionForm.spec.js index c3a50c883..e20b7c3ec 100644 --- a/webapp/components/ContributionForm/ContributionForm.spec.js +++ b/webapp/components/ContributionForm/ContributionForm.spec.js @@ -24,13 +24,13 @@ describe('ContributionForm.vue', () => { let mocks let propsData const postTitle = 'this is a title for a post' - const postTitleTooShort = '12' + const postTitleTooShort = 'xx' let postTitleTooLong = '' for (let i = 0; i < 100; i++) { postTitleTooLong += 'x' } const postContent = 'this is a post' - const postContentTooShort = '12' + const postContentTooShort = 'xx' let postContentTooLong = '' for (let i = 0; i < 2001; i++) { postContentTooLong += 'x'