Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
3lvis committed Mar 21, 2017
1 parent b5ed606 commit 0fdfd20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Sync/NSPropertyDescription+SyncTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class NSPropertyDescription_SyncTests: XCTestCase {
if let entity = NSEntityDescription.entity(forEntityName: "Entity", in: dataStack.mainContext) {
let dayAttribute = entity.sync_attributes().filter { $0.name == "old" }.first
if let dayAttribute = dayAttribute {
XCTAssertEqual(dayAttribute.customKey, "custom")
XCTAssertEqual(dayAttribute.customKey, "custom_old")
} else {
XCTFail()
}
Expand All @@ -26,7 +26,7 @@ class NSPropertyDescription_SyncTests: XCTestCase {
if let entity = NSEntityDescription.entity(forEntityName: "Entity", in: dataStack.mainContext) {
let dayAttribute = entity.sync_attributes().filter { $0.name == "current" }.first
if let dayAttribute = dayAttribute {
XCTAssertEqual(dayAttribute.customKey, "custom")
XCTAssertEqual(dayAttribute.customKey, "custom_current")
} else {
XCTFail()
}
Expand Down

0 comments on commit 0fdfd20

Please sign in to comment.