eldbus: Fix test case (make check)

This commit is contained in:
Jean-Philippe Andre 2017-09-19 16:46:22 +09:00
parent 40be6c9582
commit 6f0a4c9822
2 changed files with 7 additions and 7 deletions

View File

@ -131,7 +131,7 @@ efl_model_nth_child_get(Efl_Model *efl_model, unsigned int n)
Efl_Model *
efl_model_first_child_get(Efl_Model *efl_model)
{
return efl_model_nth_child_get(efl_model, 1);
return efl_model_nth_child_get(efl_model, 0);
}
void
@ -243,7 +243,7 @@ check_efl_model_children_slice_get(Efl_Model *efl_model)
// Test slice first child
Eo *child = NULL;
future = efl_model_children_slice_get(efl_model, 1, 1);
future = efl_model_children_slice_get(efl_model, 0, 1);
efl_ref(future);
accessor = efl_model_future_then(future);
ck_assert_ptr_ne(NULL, accessor);
@ -256,7 +256,7 @@ check_efl_model_children_slice_get(Efl_Model *efl_model)
efl_unref(future);
// Test slice last child
future = efl_model_children_slice_get(efl_model, count, 1);
future = efl_model_children_slice_get(efl_model, count - 1, 1);
efl_ref(future);
accessor = efl_model_future_then(future);
ck_assert_ptr_ne(NULL, accessor);
@ -269,7 +269,7 @@ check_efl_model_children_slice_get(Efl_Model *efl_model)
efl_unref(future);
// Test slice nonexistent element
future = efl_model_children_slice_get(efl_model, count + 1, 1);
future = efl_model_children_slice_get(efl_model, count, 1);
efl_ref(future);
ck_assert_ptr_ne(NULL, future);
accessor = efl_model_future_then(future);

View File

@ -123,9 +123,9 @@ END_TEST
START_TEST(children_slice_get)
{
Eldbus_Model_Arguments *method1 = efl_model_nth_child_get(fake_server_proxy, 1);
Eldbus_Model_Arguments *method2 = efl_model_nth_child_get(fake_server_proxy, 2);
Eldbus_Model_Arguments *signal1 = efl_model_nth_child_get(fake_server_proxy, 3);
Eldbus_Model_Arguments *method1 = efl_model_nth_child_get(fake_server_proxy, 0);
Eldbus_Model_Arguments *method2 = efl_model_nth_child_get(fake_server_proxy, 1);
Eldbus_Model_Arguments *signal1 = efl_model_nth_child_get(fake_server_proxy, 2);
const char *actual_method1_name = eldbus_model_arguments_name_get(method1);
const char *actual_method2_name = eldbus_model_arguments_name_get(method2);