File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Sources/IssueReporting/Internal Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,15 @@ jobs:
19
19
config :
20
20
- debug
21
21
- release
22
+ xcode :
23
+ - 15.4
24
+ - 15.2
22
25
name : macOS
23
26
runs-on : macos-14
24
27
steps :
25
28
- uses : actions/checkout@v4
26
29
- name : Select Xcode
27
- run : sudo xcode-select -s /Applications/Xcode_15.4 .app
30
+ run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }} .app
28
31
- name : Run tests
29
32
run : make test-${{ matrix.config }}
30
33
Original file line number Diff line number Diff line change @@ -313,8 +313,8 @@ func _currentTestIsNotNil() -> Bool {
313
313
}
314
314
315
315
private struct Confirmation: Sendable {
316
- protocol ExpectedCount: Sendable , RangeExpression< Int> { }
317
316
}
317
+ private protocol ExpectedCount: Sendable, RangeExpression < Int > { }
318
318
319
319
private struct Expectation: Sendable {
320
320
var evaluatedExpression : __Expression
@@ -331,7 +331,7 @@ func _currentTestIsNotNil() -> Bool {
331
331
case unconditional
332
332
indirect case expectationFailed( _ expectation: Expectation )
333
333
indirect case confirmationMiscounted( actual: Int , expected: Int )
334
- indirect case confirmationOutOfRange( actual: Int , expected: any Confirmation . ExpectedCount )
334
+ indirect case confirmationOutOfRange( actual: Int , expected: any ExpectedCount )
335
335
indirect case errorCaught( _ error: any Error )
336
336
indirect case timeLimitExceeded( timeLimitComponents: ( seconds: Int64 , attoseconds: Int64 ) )
337
337
case knownIssueNotRecorded
You can’t perform that action at this time.
0 commit comments