diff options
Diffstat (limited to 'textproto/reader_test.ts')
-rw-r--r-- | textproto/reader_test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproto/reader_test.ts b/textproto/reader_test.ts index dfe918282..2b81685a2 100644 --- a/textproto/reader_test.ts +++ b/textproto/reader_test.ts @@ -52,7 +52,8 @@ test({ name: "[textproto] Reader : MIME Header", async fn(): Promise<void> { const input = - "my-key: Value 1 \r\nLong-key: Even Longer Value\r\nmy-Key: Value 2\r\n\n"; + "my-key: Value 1 \r\nLong-key: Even Longer Value\r\nmy-Key: " + + "Value 2\r\n\n"; const r = reader(input); const m = assertNotEOF(await r.readMIMEHeader()); assertEquals(m.get("My-Key"), "Value 1, Value 2"); |