@@ -115,14 +115,14 @@ final class GroupedDiagnosticsFormatterTests: XCTestCase {
115
115
1 │ let pi = 3.14159
116
116
2 │ #myAssert(pi == 3)
117
117
∣ ╰─ in expansion of macro 'myAssert' here
118
- ╭- ── #myAssert ───────────────────────────────────────────────────────
118
+ ╭─ ── #myAssert ───────────────────────────────────────────────────────
119
119
│1 │ let __a = pi
120
120
│2 │ let __b = 3
121
121
│3 │ if !(__a == __b) {
122
122
│ ∣ ╰─ no matching operator '==' for types 'Double' and 'Int'
123
123
│4 │ fatalError( " assertion failed: pi != 3 " )
124
124
│5 │ }
125
- ╰- ────────────────────────────────────────────────────────────────────
125
+ ╰─ ────────────────────────────────────────────────────────────────────
126
126
3 │ print( " hello "
127
127
∣ ╰─ expected ')' to end function call
128
128
@@ -184,18 +184,18 @@ final class GroupedDiagnosticsFormatterTests: XCTestCase {
184
184
1 │ let pi = 3.14159
185
185
2 │ #myAssert(pi == 3)
186
186
∣ ╰─ in expansion of macro 'myAssert' here
187
- ╭- ── #myAssert ───────────────────────────────────────────────────────
187
+ ╭─ ── #myAssert ───────────────────────────────────────────────────────
188
188
│1 │ let __a = pi
189
189
│2 │ let __b = 3
190
190
│3 │ if #invertedEqualityCheck(__a, __b) {
191
191
│ ∣ ╰─ in expansion of macro 'invertedEqualityCheck' here
192
- │ ╭- ── #invertedEqualityCheck ───────────────────────────────────────
192
+ │ ╭─ ── #invertedEqualityCheck ───────────────────────────────────────
193
193
│ │1 │ !(__a == __b)
194
194
│ │ ∣ ╰─ no matching operator '==' for types 'Double' and 'Int'
195
- │ ╰- ─────────────────────────────────────────────────────────────────
195
+ │ ╰─ ─────────────────────────────────────────────────────────────────
196
196
│4 │ fatalError( " assertion failed: pi != 3 " )
197
197
│5 │ }
198
- ╰- ────────────────────────────────────────────────────────────────────
198
+ ╰─ ────────────────────────────────────────────────────────────────────
199
199
3 │ print( " hello "
200
200
∣ ╰─ expected ')' to end function call
201
201
0 commit comments