Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions integration-tests/test-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ export class TestRig {
}
}

result = filteredLines.join('\n');
result = filteredLines.join(EOL);
}
// If we have stderr output, include that also
if (stderr) {
Expand Down Expand Up @@ -530,9 +530,9 @@ export class TestRig {
if (!inObject && line.trim() === '{') {
inObject = true;
braceDepth = 1;
currentObject = line + '\n';
currentObject = line + EOL;
} else if (inObject) {
currentObject += line + '\n';
currentObject += line + EOL;

// Count braces
for (const char of line) {
Expand Down
Loading