File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Sources/IssueReporting/Internal Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -390,7 +390,8 @@ func _currentTestID() -> AnyHashable? {
390
390
containingTypeInfo != nil && testCasesState == nil
391
391
}
392
392
fileprivate var id : ID {
393
- var result = containingTypeInfo. map ( ID . init)
393
+ var result =
394
+ containingTypeInfo. map ( ID . init)
394
395
?? ID ( moduleName: sourceLocation. moduleName, nameComponents: [ ] , sourceLocation: nil )
395
396
396
397
if !isSuite {
@@ -432,9 +433,10 @@ func _currentTestID() -> AnyHashable? {
432
433
}
433
434
var _kind : _Kind
434
435
435
- static let _fullyQualifiedNameComponentsCache : LockIsolated <
436
- [ ObjectIdentifier : [ String ] ]
437
- > = LockIsolated ( [ : ] )
436
+ static let _fullyQualifiedNameComponentsCache :
437
+ LockIsolated <
438
+ [ ObjectIdentifier : [ String ] ]
439
+ > = LockIsolated ( [ : ] )
438
440
var fullyQualifiedNameComponents : [ String ] {
439
441
switch _kind {
440
442
case let . type( type) :
You can’t perform that action at this time.
0 commit comments