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 {
420420 var logdata = playground_log_impl ( object, " object " , TestHelpers . defaultSourceRange ( ) )
421421 var decoded = TestHelpers . unwrapOrFail ( playground_log_decode ( logdata) )
422422 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)
424424 object = ( 1 , 2 , 2 , 4 )
425425 logdata = playground_log_impl ( object, " object " , TestHelpers . defaultSourceRange ( ) )
426426 decoded = TestHelpers . unwrapOrFail ( playground_log_decode ( logdata) )
@@ -436,7 +436,7 @@ class TypenameManagementTestCase : TestCase {
436436 logdata = playground_log_impl ( object, " object " , TestHelpers . defaultSourceRange ( ) )
437437 decoded = TestHelpers . unwrapOrFail ( playground_log_decode ( logdata) )
438438 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)
440440 }
441441}
442442
You can’t perform that action at this time.
0 commit comments