Update failing test baseline

This commit is contained in:
Mohamed Hegazy 2016-09-12 14:06:55 -07:00
parent 1fce34be71
commit b526aa3329

View file

@ -43,7 +43,7 @@ export function speak<TPet extends Pet>(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