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? {
390390 containingTypeInfo != nil && testCasesState == nil
391391 }
392392 fileprivate var id : ID {
393- var result = containingTypeInfo. map ( ID . init)
393+ var result =
394+ containingTypeInfo. map ( ID . init)
394395 ?? ID ( moduleName: sourceLocation. moduleName, nameComponents: [ ] , sourceLocation: nil )
395396
396397 if !isSuite {
@@ -432,9 +433,10 @@ func _currentTestID() -> AnyHashable? {
432433 }
433434 var _kind : _Kind
434435
435- static let _fullyQualifiedNameComponentsCache : LockIsolated <
436- [ ObjectIdentifier : [ String ] ]
437- > = LockIsolated ( [ : ] )
436+ static let _fullyQualifiedNameComponentsCache :
437+ LockIsolated <
438+ [ ObjectIdentifier : [ String ] ]
439+ > = LockIsolated ( [ : ] )
438440 var fullyQualifiedNameComponents : [ String ] {
439441 switch _kind {
440442 case let . type( type) :
You can’t perform that action at this time.
0 commit comments