refactor(*): Change empty tuples to Void

This commit is contained in:
emrcftci 2019-11-13 08:54:47 +03:00
parent e36de47eac
commit c864814c1d
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ public struct PMKConfiguration {
/// The closure used to log PromiseKit events.
/// Not thread safe; change before processing any promises.
/// - Note: The default handler calls `print()`
public var logHandler: (LogEvent) -> () = { event in
public var logHandler: (LogEvent) -> Void = { event in
switch event {
case .waitOnMainThread:
print("PromiseKit: warning: `wait()` called on main thread!")

View File

@ -6,7 +6,7 @@ class Test226: XCTestCase {
describe("2.2.6: `then` may be called multiple times on the same promise.") {
describe("2.2.6.1: If/when `promise` is fulfilled, all respective `onFulfilled` callbacks must execute in the order of their originating calls to `then`.") {
describe("multiple boring fulfillment handlers") {
testFulfilled(withExpectationCount: 4) { promise, exes, sentinel -> () in
testFulfilled(withExpectationCount: 4) { promise, exes, sentinel -> Void in
var orderValidator = 0
promise.done {
XCTAssertEqual($0, sentinel)

View File

@ -178,7 +178,7 @@ class LoggingTests: XCTestCase {
func testPendingGuaranteeDeallocatedIsLogged() {
var logOutput: String? = nil
let loggingClosure: (PromiseKit.LogEvent) -> () = { event in
let loggingClosure: (PromiseKit.LogEvent) -> Void = { event in
switch event {
case .waitOnMainThread, .pendingPromiseDeallocated, .pendingGuaranteeDeallocated:
logOutput = "\(event)"