test.fish: Remove mention of ".in" files

This commit is contained in:
Fabian Homborg 2020-03-28 18:29:21 +01:00
parent 3a1bc33cad
commit 82977f07a0

View file

@ -11,9 +11,9 @@ set -x FISH_UNIT_TESTS_RUNNING 1
# Change to directory containing this script
cd (dirname (status -f))
# Test files specified on commandline, or all *.in files
# Test files specified on commandline, or all checks.
if set -q argv[1]
set files_to_test $argv.in
set files_to_test checks/$argv.fish
else
set files_to_test checks/*.fish
end