mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-23 09:18:29 +00:00
Update acceptance test for the IGListKit internal version of the iglistdiffable plugin
Summary: Fix acceptance test for IGListDiffable remodel plugin to match recent remodel changes. Reviewed By: calimarkus Differential Revision: D10408993 fbshipit-source-id: 224808b47d17d83e86a42073a4dbf031b0e1ffed
This commit is contained in:
parent
b200ddacf5
commit
c907d22acd
1 changed files with 3 additions and 3 deletions
|
|
@ -81,7 +81,7 @@ Feature: Outputting Value Objects implementing IGListDiffable
|
|||
{
|
||||
if (self == object) {
|
||||
return YES;
|
||||
} else if (self == nil || object == nil || ![object isKindOfClass:[self class]]) {
|
||||
} else if (object == nil || ![object isKindOfClass:[self class]]) {
|
||||
return NO;
|
||||
}
|
||||
return
|
||||
|
|
@ -175,7 +175,7 @@ Feature: Outputting Value Objects implementing IGListDiffable
|
|||
{
|
||||
if (self == object) {
|
||||
return YES;
|
||||
} else if (self == nil || object == nil || ![object isKindOfClass:[self class]]) {
|
||||
} else if (object == nil || ![object isKindOfClass:[self class]]) {
|
||||
return NO;
|
||||
}
|
||||
return
|
||||
|
|
@ -267,7 +267,7 @@ Feature: Outputting Value Objects implementing IGListDiffable
|
|||
{
|
||||
if (self == object) {
|
||||
return YES;
|
||||
} else if (self == nil || object == nil || ![object isKindOfClass:[self class]]) {
|
||||
} else if (object == nil || ![object isKindOfClass:[self class]]) {
|
||||
return NO;
|
||||
}
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in a new issue