Skip to content

Commit bdb3d50

Browse files
committed
remove diagnostics formatting
1 parent f24d519 commit bdb3d50

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

sample/visualization/tests/TestExamples.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ function testNonLeapYear(testCase)
3232

3333
% Verify that the two are equal
3434
testCase.verifyEqual(doyActual,doyExpected)
35-
testCase.fatalAssertEqual(1,2)
35+
testCase.verifyEqual(1,2)
36+
% testCase.fatalAssertEqual(1,2)
3637
% fatalAssertEqual(7, 20);
3738
end
3839

src/testResultsSummary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function generateTestCaseRow(testCase: MatlabTestCase): string {
121121
? testCase.diagnostics.map(diagnostic =>
122122
`<details>` +
123123
`<summary>` + diagnostic.event + `</summary>` +
124-
`<pre style="font-family: monospace; white-space: pre;">` + formatDiagnosticReport(diagnostic.report) + `</pre>` +
124+
`<pre>` + diagnostic.report + `</pre>` +
125125
`</details>`
126126
).join('')
127127
: '';

0 commit comments

Comments
 (0)