Skip to content

Commit 9079df1

Browse files
author
Benjamin Lichtman
committed
Update baselines
1 parent 92edc2d commit 9079df1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/baselines/reference/convertToAsyncFunction/convertToAsyncFunction_InnerVarNameConflict.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ function /*[#|*/f/*|]*/(): Promise<string> {
1313
async function f(): Promise<string> {
1414
const resp = await fetch("https://typescriptlang.org");
1515
var blob = resp.blob().then(blob_1 => blob_1.byteOffset).catch(err => 'Error');
16-
return blob_1.toString();
16+
return blob_2.toString();
1717
}

tests/baselines/reference/convertToAsyncFunction/convertToAsyncFunction_MultipleReturns2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ async function f(): Promise<void> {
2121
}
2222
const resp = await x;
2323
var blob = resp.blob().then(blob_1 => blob_1.byteOffset).catch(err => 'Error');
24-
const res_1 = await fetch("https://micorosft.com");
24+
const res_2 = await fetch("https://micorosft.com");
2525
return console.log("Another one!");
2626
}

0 commit comments

Comments
 (0)