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:
1919 config :
2020 - debug
2121 - release
22+ xcode :
23+ - 15.4
24+ - 15.2
2225 name : macOS
2326 runs-on : macos-14
2427 steps :
2528 - uses : actions/checkout@v4
2629 - 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
2831 - name : Run tests
2932 run : make test-${{ matrix.config }}
3033
Original file line number Diff line number Diff line change @@ -313,8 +313,8 @@ func _currentTestIsNotNil() -> Bool {
313313 }
314314
315315 private struct Confirmation: Sendable {
316- protocol ExpectedCount: Sendable , RangeExpression< Int> { }
317316 }
317+ private protocol ExpectedCount: Sendable, RangeExpression < Int > { }
318318
319319 private struct Expectation: Sendable {
320320 var evaluatedExpression : __Expression
@@ -331,7 +331,7 @@ func _currentTestIsNotNil() -> Bool {
331331 case unconditional
332332 indirect case expectationFailed( _ expectation: Expectation )
333333 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 )
335335 indirect case errorCaught( _ error: any Error )
336336 indirect case timeLimitExceeded( timeLimitComponents: ( seconds: Int64 , attoseconds: Int64 ) )
337337 case knownIssueNotRecorded
You can’t perform that action at this time.
0 commit comments