summaryrefslogtreecommitdiff
path: root/src/tests/edje
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2017-05-30 11:02:05 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2017-05-30 11:02:05 +0900
commitbc38a4c6399a15006163fa0702f9a628ec626cc3 (patch)
tree08844818a2254904285d3606008a04316c44f6c8 /src/tests/edje
parentfa944c700eeaa909ff4883296fbf484fcbb41e65 (diff)
downloadefl-bc38a4c6399a15006163fa0702f9a628ec626cc3.tar.gz
check: Bump version to 0.9.10 and change macro
Changing ck_assert_ptr_nonnull() to ck_assert_ptr_ne() in order to require "only" check >= 0.9.10. ck_assert_ptr_nonnull() was introduced in 0.11.0. ck_assert_ptr_ne() is already used a lot in the test suite so a recent version of check is required.
Diffstat (limited to 'src/tests/edje')
-rw-r--r--src/tests/edje/edje_test_edje.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/edje/edje_test_edje.c b/src/tests/edje/edje_test_edje.c
index d92c8c051c..9d31544fd6 100644
--- a/src/tests/edje/edje_test_edje.c
+++ b/src/tests/edje/edje_test_edje.c
@@ -734,7 +734,7 @@ _message_signal_reply_cb(void *data, Evas_Object *obj EINA_UNUSED,
fprintf(stderr, "source %s emit %s id %d\n", source, emission, *id);
fflush(stderr);
ck_assert_str_eq(source, "edc");
- ck_assert_ptr_nonnull(emission);
+ ck_assert_ptr_ne(emission, NULL);
if (!strncmp(emission, "int set", 7))
ck_assert_str_eq(emission, "int set 7 12 42 255");