Skip to content

Commit 9c70c74

Browse files
committed
Fixed build error after merging recent changes
1 parent ae494b7 commit 9c70c74

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

TestFoundation/TestCodable.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,11 @@ class TestCodable : XCTestCase {
562562

563563
func test_URLComponents_JSON() {
564564
for (components) in urlComponentsValues {
565-
expectRoundTripEqualityThroughJSON(for: components)
565+
do {
566+
try expectRoundTripEqualityThroughJSON(for: components)
567+
} catch let error {
568+
XCTFail("\(error)")
569+
}
566570
}
567571
}
568572
}

0 commit comments

Comments
 (0)