tests: eina_file: fix coding style in file_unlink test case

This commit is contained in:
Stefan Schmidt 2017-02-13 14:12:38 +01:00
parent 83e00cc8e8
commit d853b0ba68
1 changed files with 3 additions and 3 deletions

View File

@ -851,12 +851,12 @@ START_TEST(eina_test_file_unlink)
/*If file was not opened as 'eina'*/
fd = create_file_not_empty(tmpfile, &test_file_path, EINA_TRUE);
fail_if( !eina_file_unlink(test_file_path) );
fail_if(!eina_file_unlink(test_file_path));
/*If file was opened as 'eina'*/
fd = create_file_not_empty(tmpfile, &test_file_path, EINA_TRUE);
fail_if( !eina_file_open(test_file_path, EINA_FALSE) );
fail_if( !eina_file_unlink(test_file_path) );
fail_if(!eina_file_open(test_file_path, EINA_FALSE));
fail_if(!eina_file_unlink(test_file_path));
eina_shutdown();
}