Vincenzo Mezzela <vincenzo.mezzela@xxxxxxxxx> writes: > Refactor test -f to utilize the corresponding helper functions from As Eric pointed out to another GSoC applicant in a different thread, this is not refactoring any code, so saying "refactor" is a bit misleading. Replace use of "test -f" with the "test_path_is_file" helper function ... > test-lib-functions.sh. These functions perform identical operations > while enhancing debugging capabilities in case of test failures. > > In the context of this file, 'test ! -f' is meant to check if the file > has been correctly cleaned, thus its usage is replaced with > 'test_path_is_missing' instead of '! test_path_is_file'. In other words, the original used "test ! -f" when it meant to say "test ! -e", and test_path_is_missing would be a correct replacement? If so that makes sense.