Skip to content

Commit 75d601c

Browse files
committed
Merge pull request #18 from modocache/patch-2
[XCTestCase] Fix missing open paren for unexpected
2 parents a30ae40 + 65cfbbc commit 75d601c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

XCTest/XCTestCase.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ extension XCTestCase {
7373
}
7474
let averageDuration = totalDuration / Double(tests.count)
7575

76-
print("Executed \(tests.count) test\(testCountSuffix), with \(totalFailures) failure\(failureSuffix) \(unexpectedFailures) unexpected) in \(printableStringForTimeInterval(averageDuration)) (\(printableStringForTimeInterval(totalDuration))) seconds")
76+
print("Executed \(tests.count) test\(testCountSuffix), with \(totalFailures) failure\(failureSuffix) (\(unexpectedFailures) unexpected) in \(printableStringForTimeInterval(averageDuration)) (\(printableStringForTimeInterval(totalDuration))) seconds")
7777
}
7878

7979
// This function is for the use of XCTestCase only, but we must make it public or clients will get a link failure when using XCTest (23476006)

0 commit comments

Comments
 (0)