WIP: broken generics

This commit is contained in:
John Estropia
2016-09-06 20:16:46 +09:00
parent b502895d63
commit 82de482191
95 changed files with 610 additions and 677 deletions

View File

@@ -69,7 +69,7 @@ final class FetchTests: BaseTestDataTestCase {
}
do {
let fetchExpectation = self.expectation(withDescription: "fetch")
let fetchExpectation = self.expectation(description: "fetch")
var existing1: TestEntity1?
stack.beginSynchronous { (transaction) in
@@ -88,7 +88,7 @@ final class FetchTests: BaseTestDataTestCase {
}
do {
let fetchExpectation = self.expectation(withDescription: "fetch")
let fetchExpectation = self.expectation(description: "fetch")
stack.beginAsynchronous { (transaction) in
let existing1 = transaction.fetchExisting(object)
@@ -162,7 +162,7 @@ final class FetchTests: BaseTestDataTestCase {
}
do {
let fetchExpectation = self.expectation(withDescription: "fetch")
let fetchExpectation = self.expectation(description: "fetch")
var existing1 = [TestEntity1]()
stack.beginSynchronous { (transaction) in
@@ -191,7 +191,7 @@ final class FetchTests: BaseTestDataTestCase {
}
do {
let fetchExpectation = self.expectation(withDescription: "fetch")
let fetchExpectation = self.expectation(description: "fetch")
stack.beginAsynchronous { (transaction) in
let existing1 = transaction.fetchExisting(objects)