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:
Chris McGrath 2018-10-22 18:37:28 -07:00 committed by Facebook Github Bot
parent b200ddacf5
commit c907d22acd

View file

@ -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