From 7394de3ae3a8b8849a163e7b4f7e0f9dec3bbd1a Mon Sep 17 00:00:00 2001 From: rinsuki <428rinsuki+git@gmail.com> Date: Fri, 25 Oct 2019 19:53:37 +0900 Subject: [PATCH] =?UTF-8?q?=E5=AE=9F=E9=9A=9B=E3=81=AE=E6=96=87=E5=AD=97?= =?UTF-8?q?=E6=95=B0=E3=83=AA=E3=83=9F=E3=83=83=E3=83=88=E3=81=A8=E9=81=95?= =?UTF-8?q?=E3=81=A3=E3=81=A6=E3=81=9F=E3=81=AE=E3=81=A7=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/note.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/note.ts b/test/note.ts index 3aa12b5a61..22b3d0144c 100644 --- a/test/note.ts +++ b/test/note.ts @@ -150,7 +150,7 @@ describe('Note', () => { it('文字数ぎりぎりで怒られない', async(async () => { const post = { - text: '!'.repeat(500) + text: '!'.repeat(1000) }; const res = await request('/notes/create', post, alice); assert.strictEqual(res.status, 200); @@ -158,7 +158,7 @@ describe('Note', () => { it('文字数オーバーで怒られる', async(async () => { const post = { - text: '!'.repeat(501) + text: '!'.repeat(1001) }; const res = await request('/notes/create', post, alice); assert.strictEqual(res.status, 400);