Skip to content

Commit ff3ca28

Browse files
authored
Align test result icons for terminal with swift-testing (#1416)
Swift-testing updated their icons for test failure in swiftlang/swift-testing#983
1 parent b9713fd commit ff3ca28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TestExplorer/TestParsers/SwiftTestingOutputParser.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ export class SymbolRenderer {
530530
case TestSymbol.skip:
531531
case TestSymbol.passWithKnownIssue:
532532
case TestSymbol.fail:
533-
return "\u{00D7}"; // Unicode: MULTIPLICATION SIGN
533+
return "\u{279C}"; // Unicode: HEAVY ROUND-TIPPED RIGHTWARDS ARROW
534534
case TestSymbol.pass:
535535
return "\u{221A}"; // Unicode: SQUARE ROOT
536536
case TestSymbol.difference:
@@ -551,7 +551,7 @@ export class SymbolRenderer {
551551
case TestSymbol.skip:
552552
case TestSymbol.passWithKnownIssue:
553553
case TestSymbol.fail:
554-
return "\u{2718}"; // Unicode: HEAVY BALLOT X
554+
return "\u{279C}"; // Unicode: HEAVY ROUND-TIPPED RIGHTWARDS ARROW
555555
case TestSymbol.pass:
556556
return "\u{2714}"; // Unicode: HEAVY CHECK MARK
557557
case TestSymbol.difference:

0 commit comments

Comments
 (0)