From 04221e07e2cb527be42014c195cc67347d816f48 Mon Sep 17 00:00:00 2001 From: Andy Date: Fri, 16 Jun 2017 09:02:01 -0700 Subject: [PATCH] umzug: Fix test (#17250) --- types/umzug/umzug-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/umzug/umzug-tests.ts b/types/umzug/umzug-tests.ts index aab3ad24c5..650c4fdfbf 100644 --- a/types/umzug/umzug-tests.ts +++ b/types/umzug/umzug-tests.ts @@ -82,7 +82,7 @@ var AnotherUmzug = new Umzug({ // A function that receives and returns the to be executed function. // This can be used to modify the function. - wrap: function (fun : Function) { return fun; } + wrap: (fun: T) => fun, } });