From c34089973ba6def4de5a2280dcd56a358dae4e4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=B1=A0=E8=B2=B4=E4=B9=8B?= Date: Fri, 13 Jul 2018 02:07:17 +0900 Subject: [PATCH] Typo fix (#27093) --- types/supertest/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/supertest/index.d.ts b/types/supertest/index.d.ts index 0716f9e1b5..092ab89bb4 100644 --- a/types/supertest/index.d.ts +++ b/types/supertest/index.d.ts @@ -27,7 +27,7 @@ declare namespace supertest { expect(body: RegExp, callback?: CallbackHandler): this; expect(body: Object, callback?: CallbackHandler): this; expect(field: string, val: string, callback?: CallbackHandler): this; - expect(fzield: string, val: RegExp, callback?: CallbackHandler): this; + expect(field: string, val: RegExp, callback?: CallbackHandler): this; expect(checker: (res: Response) => any): this; end(callback?: CallbackHandler): this; }