File tree Expand file tree Collapse file tree 1 file changed +17
-14
lines changed Expand file tree Collapse file tree 1 file changed +17
-14
lines changed Original file line number Diff line number Diff line change @@ -800,14 +800,16 @@ final class DumpTests: XCTestCase {
800
800
}
801
801
}
802
802
803
- let subject = Parent ( name: " Arthur " , children: [
804
- Child ( name: " Virginia " ) ,
805
- Child ( name: " Ronald " ) ,
806
- Child ( name: " Fred " ) ,
807
- Child ( name: " George " ) ,
808
- Child ( name: " Percy " ) ,
809
- Child ( name: " Charles " ) ,
810
- ] )
803
+ let subject = Parent (
804
+ name: " Arthur " ,
805
+ children: [
806
+ Child ( name: " Virginia " ) ,
807
+ Child ( name: " Ronald " ) ,
808
+ Child ( name: " Fred " ) ,
809
+ Child ( name: " George " ) ,
810
+ Child ( name: " Percy " ) ,
811
+ Child ( name: " Charles " ) ,
812
+ ] )
811
813
812
814
var dump = " "
813
815
customDump ( subject, to: & dump)
@@ -859,12 +861,13 @@ final class DumpTests: XCTestCase {
859
861
let human2 = Human ( )
860
862
861
863
var dump = " "
862
- customDump ( [
863
- human,
864
- human,
865
- human2,
866
- human2,
867
- ] , to: & dump)
864
+ customDump (
865
+ [
866
+ human,
867
+ human,
868
+ human2,
869
+ human2,
870
+ ] , to: & dump)
868
871
869
872
XCTAssertNoDifference (
870
873
dump,
You can’t perform that action at this time.
0 commit comments