From b526aa3329ce133313ec0ac7acf5106a4cf99a79 Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Mon, 12 Sep 2016 14:06:55 -0700 Subject: [PATCH] Update failing test baseline --- .../baselines/reference/narrowingConstrainedTypeParameter.types | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/baselines/reference/narrowingConstrainedTypeParameter.types b/tests/baselines/reference/narrowingConstrainedTypeParameter.types index adefb63ab88..942b9f7055d 100644 --- a/tests/baselines/reference/narrowingConstrainedTypeParameter.types +++ b/tests/baselines/reference/narrowingConstrainedTypeParameter.types @@ -43,7 +43,7 @@ export function speak(pet: TPet, voice: (pet: TPet) => string) throw new Error("Expected \"pet\" to be a Pet"); >new Error("Expected \"pet\" to be a Pet") : Error >Error : ErrorConstructor ->"Expected \"pet\" to be a Pet" : string +>"Expected \"pet\" to be a Pet" : "Expected \"pet\" to be a Pet" } return voice(pet); >voice(pet) : string