From 7e416e04931dbe843bff97e765cdc944df0fc9ba Mon Sep 17 00:00:00 2001 From: Mateusz Masiarz Date: Tue, 19 Sep 2023 11:19:11 +0200 Subject: [PATCH] Fix tests --- src/sinol_make/helpers/package_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sinol_make/helpers/package_util.py b/src/sinol_make/helpers/package_util.py index 809e4921..0ff7f4fa 100644 --- a/src/sinol_make/helpers/package_util.py +++ b/src/sinol_make/helpers/package_util.py @@ -83,7 +83,7 @@ def _get_limit_from_dict(dict: Dict[str, Any], limit_type: LimitTypes, test_id: if plural_limit_name in dict: if test_id in dict[plural_limit_name]: - util.exit_with_error("Specifying limit for single test is a bad practice and is not supported.") + util.exit_with_error("Specifying limit for a single test is not allowed in sinol-make.") elif test_group in dict[plural_limit_name]: return dict[plural_limit_name][test_group] if limit_name in dict: