runtests: fix typo in the existence of disabled tests checker

Closes #5316
This commit is contained in:
Emil Engler 2020-04-30 20:04:50 +02:00 committed by Daniel Stenberg
parent 49bbc4f09b
commit 44f5edd863
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -5481,7 +5481,7 @@ sub disabledtests {
my ($n) = $1;
$disabled{$n}=$n; # disable this test number
if(! -f "$srcdir/data/test$n") {
print STDERR "WARNING! Non-exiting test $n in DISABLED!\n";
print STDERR "WARNING! Non-existing test $n in DISABLED!\n";
# fail hard to make user notice
exit 1;
}