ecore_audio tests: Use the correct libcheck functions

Undefined symbols are not nice to have

Signed-off-by: Daniel Willmann <d.willmann@samsung.com>

SVN revision: 82929
This commit is contained in:
Daniel Willmann 2013-01-17 10:29:19 +00:00 committed by Daniel Willmann
parent 58291fb022
commit 4010d3cefe
1 changed files with 2 additions and 2 deletions

View File

@ -357,10 +357,10 @@ void setup(void)
int ret;
ret = eina_init();
ck_assert_int_ge(ret, 1);
ck_assert_int_eq(ret, 1);
ret = ecore_init();
ck_assert_int_ge(ret, 1);
ck_assert_int_eq(ret, 1);
ret = ecore_audio_init();
ck_assert_int_eq(ret, 1);