From 6076014f5815ee7d129aa38a1eb380d9262de77f Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Mon, 5 Dec 2016 18:15:08 +0900 Subject: [PATCH] eo: Fix test case The exact error message has changed. Another test case is still broken. --- src/tests/eo/suite/eo_test_call_errors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/eo/suite/eo_test_call_errors.c b/src/tests/eo/suite/eo_test_call_errors.c index 3b23216711..969a6b28d6 100644 --- a/src/tests/eo/suite/eo_test_call_errors.c +++ b/src/tests/eo/suite/eo_test_call_errors.c @@ -38,7 +38,7 @@ START_TEST(eo_api_not_implemented_call) Eo *obj = efl_add(SIMPLE_CLASS, NULL); fail_if(!obj); - TEST_EO_ERROR("_efl_object_api_op_id_get", "Unable to resolve op for api func %p"); + TEST_EO_ERROR("simple_no_implementation", "Unable to resolve op for api func %p for obj=%p (%s)"); simple_no_implementation(obj); fail_unless(ctx.did);