Skip to content

Commit 8a93a47

Browse files
stephencelisgithub-actions[bot]
authored andcommitted
Run swift-format
1 parent d7f18c3 commit 8a93a47

File tree

1 file changed

+17
-14
lines changed

1 file changed

+17
-14
lines changed

Tests/CustomDumpTests/DumpTests.swift

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -800,14 +800,16 @@ final class DumpTests: XCTestCase {
800800
}
801801
}
802802

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+
])
811813

812814
var dump = ""
813815
customDump(subject, to: &dump)
@@ -859,12 +861,13 @@ final class DumpTests: XCTestCase {
859861
let human2 = Human()
860862

861863
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)
868871

869872
XCTAssertNoDifference(
870873
dump,

0 commit comments

Comments
 (0)