Skip to content

Commit a7a888d

Browse files
authored
hopefully fix issue with e2e (#492)
1 parent b88ae13 commit a7a888d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/open-next/src/utils/stream.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function toReadableStream(
3737

3838
export function emptyReadableStream(): ReadableStream {
3939
if (process.env.OPEN_NEXT_FORCE_NON_EMPTY_RESPONSE === "true") {
40-
return Readable.toWeb(Readable.from(["SOMETHING"]));
40+
return Readable.toWeb(Readable.from([Buffer.from("SOMETHING")]));
4141
}
4242
return Readable.toWeb(Readable.from([]));
4343
}

0 commit comments

Comments
 (0)