diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2018-04-09 13:36:59 +0200 |
---|---|---|
committer | Stefan Schmidt <stefan@osg.samsung.com> | 2018-04-10 11:28:01 +0200 |
commit | 3858186376da10a801677e26cc1573c95dd1c48b (patch) | |
tree | 75852a58c837bf2ebec7387629342f716ae76b5c /src/tests/ecore | |
parent | 94d0aae9068ab00d8c5fdabe3412b3631de39258 (diff) | |
download | efl-3858186376da10a801677e26cc1573c95dd1c48b.tar.gz |
tests: reduce duration of ecore_test_animators
Summary:
fix T6852
Depends on D5891
Reviewers: stefan_schmidt
Subscribers: cedric
Maniphest Tasks: T6852
Differential Revision: https://phab.enlightenment.org/D5892
Diffstat (limited to 'src/tests/ecore')
-rw-r--r-- | src/tests/ecore/ecore_test_animator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/ecore/ecore_test_animator.c b/src/tests/ecore/ecore_test_animator.c index cbd790ea9a..271f9792ef 100644 --- a/src/tests/ecore/ecore_test_animator.c +++ b/src/tests/ecore/ecore_test_animator.c @@ -28,7 +28,7 @@ EFL_START_TEST(ecore_test_animators) double interval2 = 0.01; ecore_animator_frametime_set(interval1); - animator = ecore_animator_timeline_add(1, _anim_cb, &interval1); + animator = ecore_animator_timeline_add(0.1, _anim_cb, &interval1); fail_if(!animator); @@ -36,7 +36,7 @@ EFL_START_TEST(ecore_test_animators) ecore_animator_frametime_set(interval2); prev = 0; - animator = ecore_animator_timeline_add(1, _anim_cb, &interval2); + animator = ecore_animator_timeline_add(0.1, _anim_cb, &interval2); fail_if(!animator); ecore_main_loop_begin(); |