Skip to content

Commit 1fc4f3a

Browse files
authored
fix error message if tests dir was not found (#1567)
1 parent 45bd65a commit 1fc4f3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/kphp_tester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ def parse_args():
538538
def main():
539539
args = parse_args()
540540
if not os.path.exists(args.tests_dir):
541-
print("Can't find tests dir '{}'".format(args.test_list))
541+
print("Can't find tests dir '{}'".format(args.tests_dir))
542542
sys.exit(1)
543543

544544
if args.test_list and not os.path.exists(args.test_list):

0 commit comments

Comments
 (0)