Skip to content

Commit 56179e4

Browse files
committed
wip
1 parent 5a1266d commit 56179e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/json-lines-stream.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const setup = () => {
1717
};
1818

1919
suite("JsonLinesStream Test Suite", () => {
20-
test("should parse and emit complete JsonLines messages", () => {
20+
test("should parse and emit complete JSON lines messages", () => {
2121
const { stream, callbackCalls } = setup();
2222

2323
// Test with multiple JSON objects in a single write
@@ -30,7 +30,7 @@ suite("JsonLinesStream Test Suite", () => {
3030
assert.deepStrictEqual(callbackCalls[1], { key2: "value2" });
3131
});
3232

33-
test("should handle incomplete JsonLines messages across multiple writes", () => {
33+
test("should handle incomplete JSON lines messages across multiple writes", () => {
3434
const { stream, callbackCalls } = setup();
3535

3636
// First write with partial message

0 commit comments

Comments
 (0)