We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de25eaa commit fa6e1d2Copy full SHA for fa6e1d2
Sources/XCTestDynamicOverlay/XCTUnimplemented.swift
@@ -338,16 +338,17 @@ public struct XCTUnimplementedFailure: Error {
338
}
339
340
private func _fail(_ description: String, _ parameters: Any?) {
341
- let parametersDescription = parameters.map {
342
- """
343
- …
+ let parametersDescription =
+ parameters.map {
+ """
344
+ …
345
- Invoked with:
346
-
347
- \($0)
348
349
- }
350
- ?? ""
+ Invoked with:
+
+ \($0)
+ }
351
+ ?? ""
352
XCTFail(
353
"""
354
Unimplemented\(description.isEmpty ? "" : ": \(description)")\(parametersDescription)
0 commit comments