File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ function generateTestFileRow(file: MatlabTestFile): string {
106106 <th>Diagnostics</th>
107107 <th>Duration(s)</th>
108108 </tr>` +
109- file . testCases . map ( tc => generateTestCaseRow ( tc ) ) . join ( '\n ' ) +
109+ file . testCases . map ( tc => generateTestCaseRow ( tc ) ) . join ( '' ) +
110110 `</table>
111111 </details>
112112 </td>
@@ -133,7 +133,7 @@ function generateTestCaseRow(testCase: MatlabTestCase): string {
133133 <td>-0.167</td>
134134 </tr>
135135 </table>
136- <pre style="font-family: monospace; white-space: pre;">` + testCase . diagnostics . map ( d => formatDiagnosticReport ( d . report ) ) . join ( '\n ' ) + `</pre>
136+ <pre style="font-family: monospace; white-space: pre;">` + testCase . diagnostics . map ( d => formatDiagnosticReport ( d . report ) ) . join ( '' ) + `</pre>
137137 </details>`
138138 : '' ;
139139
You can’t perform that action at this time.
0 commit comments