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);