File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
PlaygroundLogger/PlaygroundLogger Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -420,7 +420,7 @@ class TypenameManagementTestCase : TestCase {
420
420
var logdata = playground_log_impl ( object, " object " , TestHelpers . defaultSourceRange ( ) )
421
421
var decoded = TestHelpers . unwrapOrFail ( playground_log_decode ( logdata) )
422
422
var structured = TestHelpers . unwrapOrFail ( decoded. object as? PlaygroundDecodedObject_Structured )
423
- expectEqual ( " PlaygroundLogger.TypenameManagementTestCase.( doTest () -> ()).(SomeStruct #1 ) " , structured. typeName)
423
+ expectEqual ( " SomeStruct #1 in PlaygroundLogger.TypenameManagementTestCase.doTest() -> ()" , structured. typeName)
424
424
object = ( 1 , 2 , 2 , 4 )
425
425
logdata = playground_log_impl ( object, " object " , TestHelpers . defaultSourceRange ( ) )
426
426
decoded = TestHelpers . unwrapOrFail ( playground_log_decode ( logdata) )
@@ -436,7 +436,7 @@ class TypenameManagementTestCase : TestCase {
436
436
logdata = playground_log_impl ( object, " object " , TestHelpers . defaultSourceRange ( ) )
437
437
decoded = TestHelpers . unwrapOrFail ( playground_log_decode ( logdata) )
438
438
structured = TestHelpers . unwrapOrFail ( decoded. object as? PlaygroundDecodedObject_Structured )
439
- expectEqual ( " PlaygroundLogger.TypenameManagementTestCase.( doTest () -> ()).(Foo #1).Swift.Bar.Baz " , structured. typeName)
439
+ expectEqual ( " Bar.Baz in Foo #1 in PlaygroundLogger.TypenameManagementTestCase.doTest() -> ()" , structured. typeName)
440
440
}
441
441
}
442
442
You can’t perform that action at this time.
0 commit comments