Skip to content
This repository has been archived by the owner on Feb 5, 2023. It is now read-only.

Commit

Permalink
Update performance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Dec 17, 2018
1 parent f0a9f83 commit f546174
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Tests/PerformanceTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class FutureCallbacksTests: XCTestCase {
for future in futures {
future.on(success: { _ in },
failure: { _ in },
completion: { _ in })
completion: { })
}
}
}
Expand All @@ -61,7 +61,7 @@ class FutureCallbacksTests: XCTestCase {
for future in futures[iteration] {
future.on(success: { _ in },
failure: { _ in },
completion: { _ in })
completion: { })
}
}
}
Expand All @@ -74,7 +74,7 @@ class FutureCallbacksTests: XCTestCase {
for future in futures {
future.on(success: { _ in },
failure: { _ in },
completion: { _ in })
completion: { })
}
}
}
Expand All @@ -86,11 +86,11 @@ class FutureCallbacksTests: XCTestCase {
for future in futures {
future.on(success: { _ in },
failure: { _ in },
completion: { _ in })
completion: { })

future.on(success: { _ in },
failure: { _ in },
completion: { _ in })
completion: { })
}
}
}
Expand All @@ -107,7 +107,7 @@ class FutureCallbacksTests: XCTestCase {
for future in futures[iteration] {
future.on(success: { _ in },
failure: { _ in },
completion: { _ in })
completion: { })
}
}
}
Expand Down

0 comments on commit f546174

Please sign in to comment.