e - fix eet image format test to actually use key when loading

fix complaint from eet format test ... was failing because we didnt
use a key

@fix
This commit is contained in:
Carsten Haitzler 2017-07-30 22:55:19 +09:00
parent c87d70eb9a
commit d870549c0f
1 changed files with 7 additions and 2 deletions

View File

@ -1558,11 +1558,16 @@ _e_main_test_formats(void)
for (i = 0; i < EINA_C_ARRAY_LENGTH(types); i++)
{
char b[128], *t = types[i];
const char *key = NULL;
snprintf(b, sizeof(b), "data/images/test.%s", types[i]);
e_prefix_data_concat_static(buff, b);
evas_object_image_file_set(im, buff, NULL);
if (i == t_edj) t = "eet";
if (i == t_edj)
{
t = "eet";
key = "images/0";
}
evas_object_image_file_set(im, buff, key);
switch (evas_object_image_load_error_get(im))
{
default: