summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric Bail <cedric.bail@samsung.com>2013-05-20 18:59:43 +0900
committerCedric Bail <cedric.bail@samsung.com>2013-05-20 18:59:43 +0900
commitd66517debf864fc7023c744091205334cb72356b (patch)
treec2e34bc164597780118e80b8f836d979a17d15df
parentbe153f92b6bbb325d7f68166d0c8e940a1c25fba (diff)
downloadefl-d66517debf864fc7023c744091205334cb72356b.tar.gz
ecore: animator can get called with the same value due to rounding and range limit.
-rw-r--r--src/tests/ecore/ecore_test_animator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/ecore/ecore_test_animator.c b/src/tests/ecore/ecore_test_animator.c
index a984eb7644..ce9520ddab 100644
--- a/src/tests/ecore/ecore_test_animator.c
+++ b/src/tests/ecore/ecore_test_animator.c
@@ -11,7 +11,7 @@ static double prev = 0;
static Eina_Bool _anim_cb(void *data, double pos)
{
- fail_if(prev >= pos);
+ fail_if(prev > pos);
prev = pos;
if (pos == 1.0)