diff --git a/Sources/KIF/Additions/CALayer-KIFAdditions.m b/Sources/KIF/Additions/CALayer-KIFAdditions.m index 9ea6b2f3..3f6bed75 100644 --- a/Sources/KIF/Additions/CALayer-KIFAdditions.m +++ b/Sources/KIF/Additions/CALayer-KIFAdditions.m @@ -60,7 +60,7 @@ - (BOOL)hasAnimations if (!animationDidStopSent) { result = YES; } - } else if (currentTime > completionTime) { + } else if (currentTime < completionTime) { // Otherwise, use the completion time to determine if the animation has been completed. // This doesn't seem to always be exactly right however. result = YES;