Skip to content

Commit 1d17f2a

Browse files
author
Tsuyoshi Ushio
committed
Fix lint error and bump version to 4.11.2
1 parent edbf534 commit 1d17f2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure/functions",
3-
"version": "4.11.1",
3+
"version": "4.11.2",
44
"description": "Microsoft Azure Functions NodeJS Framework",
55
"keywords": [
66
"azure",

test/http/HttpResponse.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ describe('HttpResponse', () => {
387387

388388
it('Node.js Readable stream from async generator', async () => {
389389
// Common pattern for HTTP streaming (e.g., AI chat responses)
390-
async function* generateChunks() {
390+
function* generateChunks() {
391391
yield 'Hello ';
392392
yield 'from ';
393393
yield 'stream';

0 commit comments

Comments
 (0)