stefan pushed a commit to branch efl-1.24. http://git.enlightenment.org/core/efl.git/commit/?id=e6dd33d7a565ad7c0529db7a92e9463fc4fae95b
commit e6dd33d7a565ad7c0529db7a92e9463fc4fae95b Author: Vincent Torri <[email protected]> Date: Tue May 26 21:48:56 2020 +0000 Eina file test: use the correct Eina file object Reviewed-by: Stefan Schmidt <[email protected]> Reviewed-by: Cedric BAIL <[email protected]> Differential Revision: https://phab.enlightenment.org/D11885 --- src/tests/eina/eina_test_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/eina/eina_test_file.c b/src/tests/eina/eina_test_file.c index a76d17c746..8ef3d1a290 100644 --- a/src/tests/eina/eina_test_file.c +++ b/src/tests/eina/eina_test_file.c @@ -376,7 +376,7 @@ EFL_START_TEST(eina_file_map_new_test) fail_if(eina_file_refresh(e_file)); e_file2 = eina_file_open(test_file2_path, EINA_FALSE); - fail_if(!e_file); + fail_if(!e_file2); file2_length = eina_file_size_get(e_file2); correct_file_open_check = file2_length - (big_buffer_size - file_min_offset); // check size of big_buffer == size of file --
