diff --git a/test/compat/render-chunked.test.js b/test/compat/render-chunked.test.js index 9d8a0c0e..db7d3d7c 100644 --- a/test/compat/render-chunked.test.js +++ b/test/compat/render-chunked.test.js @@ -32,10 +32,10 @@ describe('renderToChunks', () => { await promise; expect(result).to.deep.equal([ - '
loading...
', + '
loading...
', '' ]); }); @@ -60,7 +60,7 @@ describe('renderToChunks', () => { suspended.resolve(); expect(result).to.deep.equal([ - '
loading...
', + '
loading...
', '' diff --git a/test/compat/stream-node.test.js b/test/compat/stream-node.test.js index a2079cb4..bd3b0c55 100644 --- a/test/compat/stream-node.test.js +++ b/test/compat/stream-node.test.js @@ -66,10 +66,10 @@ describe('renderToPipeableStream', () => { const result = await sink.promise; expect(result).to.deep.equal([ - '
loading...
', + '
loading...
', '' ]); }); diff --git a/test/compat/stream.test.js b/test/compat/stream.test.js index 48f91617..5ac6cfd5 100644 --- a/test/compat/stream.test.js +++ b/test/compat/stream.test.js @@ -82,10 +82,10 @@ describe('renderToReadableStream', () => { const result = await sink.promise; expect(result).to.deep.equal([ - '
loading...
', + '
loading...
', '' ]); });