Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed Jun 2, 2021
1 parent c3e6131 commit 0a778e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/headers_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,9 @@ Deno.test("headers - trims values", () => {
const d = new TestDispatcher();
const p = new Parser(d);
p.parse(
te.encode(`HMSG SUBJECT 1 REPLY 23 23\r\nNATS/1.0\r\nA: A \r\n\r\n\r\n`),
te.encode(
`HMSG SUBJECT 1 REPLY 23 23\r\nNATS/1.0\r\nA: A \r\n\r\n\r\n`,
),
);
assertEquals(d.errs.length, 0);
assertEquals(d.msgs.length, 1);
Expand Down

0 comments on commit 0a778e3

Please sign in to comment.