tests: eio: fix filename naming in two tests

The file names are derived from the test case names. These two seem to
have been overlooked when copying one test case to another.
I hoped this would fix my problems I have with the eio test suite
recently, but sadly it does not. Time to go on a git bisect tour.
This commit is contained in:
Stefan Schmidt 2018-04-23 15:50:51 +02:00
parent ef2e6afd1f
commit 054424af51
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ EFL_START_TEST(eio_test_monitor_add_and_remove)
Eina_Stringshare *filename;
Eio_Monitor *monitor;
filename = eina_stringshare_printf("%s/eio_test_monitor_directory_file_created_notify", dirname);
filename = eina_stringshare_printf("%s/eio_test_monitor_add_and_remove", dirname);
_create_directory((void*)filename);
//sleep to avoid catching event generated by above manipulations

View File

@ -139,7 +139,7 @@ EFL_START_TEST(eio_test_sentry_add_and_remove)
Eina_Stringshare *filename;
Eo *sentry;
filename = eina_stringshare_printf("%s/eio_test_sentry_directory_file_created_notify", dirname);
filename = eina_stringshare_printf("%s/eio_test_sentry_add_and_remove", dirname);
_create_directory((void*)filename);
//sleep to avoid catching event generated by above manipulations