Skip to content

Commit

Permalink
fix overlong string
Browse files Browse the repository at this point in the history
  • Loading branch information
SRHerzog committed Feb 9, 2023
1 parent e20db59 commit 507fb5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/parallel/test-http-early-hints.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ const testResBody = 'response content\n';
req.on('information', common.mustCall((res) => {
assert.strictEqual(
res.headers.link,
'</styles.css>; rel=preload; as=style, </scripts.js>; crossorigin; rel=preload; as=script, </scripts.js>; rel=preload; as=script; crossorigin'
'</styles.css>; rel=preload; as=style, </scripts.js>; crossorigin; ' +
'rel=preload; as=script, </scripts.js>; rel=preload; as=script; crossorigin'
);
}));

Expand Down

0 comments on commit 507fb5a

Please sign in to comment.