Skip to content

Commit cc55ceb

Browse files
author
Mike Ferris
committed
Merge pull request #45 from modocache/xctprint-test-failures
[XCTestMain] Don't XCTPrint arrays of strings
2 parents 73ff15a + 555b764 commit cc55ceb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/XCTest/XCTestMain.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import Glibc
1818
import Darwin
1919
#endif
2020

21-
internal func XCTPrint(items: Any..., separator: String = " ", terminator: String = "\n") {
22-
print(items, separator: separator, terminator: terminator)
21+
internal func XCTPrint(message: String) {
22+
print(message)
2323
fflush(stdout)
2424
}
2525

0 commit comments

Comments
 (0)