From: Tom Hacohen Date: Mon, 5 Sep 2016 14:25:14 +0000 (+0100) Subject: Efl object: Simplify test that was unneededly prone to breaking X-Git-Tag: upstream/1.20.0~4509 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e0a95a96c96f3d92418041a931a93bc2898c5cf1;p=platform%2Fupstream%2Fefl.git Efl object: Simplify test that was unneededly prone to breaking --- diff --git a/src/tests/eo/suite/eo_test_class_errors.c b/src/tests/eo/suite/eo_test_class_errors.c index 410174b..a63d9f5 100644 --- a/src/tests/eo/suite/eo_test_class_errors.c +++ b/src/tests/eo/suite/eo_test_class_errors.c @@ -236,7 +236,6 @@ END_TEST START_TEST(eo_wrong_override) { efl_object_init(); - eina_log_print_cb_set(eo_test_print_cb, &ctx); const Efl_Class *klass; @@ -253,12 +252,8 @@ START_TEST(eo_wrong_override) NULL }; - TEST_EO_ERROR("_eo_class_funcs_set", "Class '%s': Can't find api func description in class hierarchy (%p->%p) (%s)."); klass = efl_class_new(&class_desc, NULL, NULL); fail_if(klass); - fail_unless(ctx.did); - - eina_log_print_cb_set(eina_log_print_cb_stderr, NULL); efl_object_shutdown(); }