Skip to content

Commit

Permalink
Update src/sinol_make/helpers/package_util.py
Browse files Browse the repository at this point in the history
Co-authored-by: Tomasz Nowak <[email protected]>
  • Loading branch information
MasloMaslane and tonowak authored Sep 19, 2023
1 parent 58724bf commit c740313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sinol_make/helpers/package_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _get_limit_from_dict(dict: Dict[str, Any], limit_type: LimitTypes, test_id:
if allow_test_limit:
return dict[plural_limit_name][test_id]
else:
util.exit_with_error(f'{os.path.basename(test_path)}: Specifying limit for single test is a bad practice and is not supported.')
util.exit_with_error(f'{os.path.basename(test_path)}: 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:
Expand Down

0 comments on commit c740313

Please sign in to comment.