tests: eio: use the correct eina_promise_* functions

When these changes got it with 0c76f82a31
they used the non existing symbols ecore_promise_value_get and
ecore_promise_then (most likely due to an unfinished refactoring)

Make sure we actually use the correct eina_promise_ symbols and add NULL
for the error callback which is now needed.
This commit is contained in:
Stefan Schmidt 2016-05-03 09:36:37 +02:00
parent 37667cb69f
commit b917eb4c25
1 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ _children_removed_cb(void *data EINA_UNUSED, const Eo_Event* event)
Eina_Promise* promise;
efl_model_property_get(evt->child, "path", &promise);
Eina_Value const* value = ecore_promise_value_get(promise);
Eina_Value const* value = eina_promise_value_get(promise);
char* filename = eina_value_to_string(value);
if(temp_filename && !strcmp(filename, temp_filename) == 0)
@ -50,7 +50,7 @@ _children_added_cb(void *data EINA_UNUSED, const Eo_Event* event)
Eina_Promise* promise;
efl_model_property_get(evt->child, "path", &promise);
Eina_Value const* value = ecore_promise_value_get(promise);
Eina_Value const* value = eina_promise_value_get(promise);
char* filename = eina_value_to_string(value);
if(temp_filename && !strcmp(temp_filename, filename))
@ -96,7 +96,7 @@ START_TEST(eio_model_test_test_monitor_add)
Eina_Promise* promise;
efl_model_children_slice_get(filemodel, 0, 0, &promise);
ecore_promise_then(promise, &_create_file, NULL);
eina_promise_then(promise, &_create_file, NULL, NULL);
ecore_main_loop_begin();