From 89853a15124453b6c1e15cb13151dfbc5295be5c Mon Sep 17 00:00:00 2001 From: Karim Shamazov Date: Tue, 24 Mar 2026 17:11:12 +0300 Subject: [PATCH] fix error message if tests dir was not found --- tests/kphp_tester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kphp_tester.py b/tests/kphp_tester.py index 940fb54b3a..addd24360a 100755 --- a/tests/kphp_tester.py +++ b/tests/kphp_tester.py @@ -538,7 +538,7 @@ def parse_args(): def main(): args = parse_args() if not os.path.exists(args.tests_dir): - print("Can't find tests dir '{}'".format(args.test_list)) + print("Can't find tests dir '{}'".format(args.tests_dir)) sys.exit(1) if args.test_list and not os.path.exists(args.test_list):