Fixed build error after merging recent changes
diff --git a/TestFoundation/TestCodable.swift b/TestFoundation/TestCodable.swift
index b725f1e..63d8271 100644
--- a/TestFoundation/TestCodable.swift
+++ b/TestFoundation/TestCodable.swift
@@ -562,7 +562,11 @@
 
     func test_URLComponents_JSON() {
         for (components) in urlComponentsValues {
-            expectRoundTripEqualityThroughJSON(for: components)
+            do {
+                try expectRoundTripEqualityThroughJSON(for: components)
+            } catch let error {
+                XCTFail("\(error)")
+            }
         }
     }
 }