Skip to content

Commit 566e2b8

Browse files
committed
Fixed error in error message
1 parent 9e1a855 commit 566e2b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildtest/cli/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ def __init__(
568568
if not isinstance(field, int):
569569
raise BuildTestError(f"{field} is not of type int")
570570
if field <= 0:
571-
raise BuildTestError("Limit must be greater than 0")
571+
raise BuildTestError(f"{field} must be greater than 0")
572572

573573
self.remove_stagedir = remove_stagedir
574574
self.configuration = configuration

0 commit comments

Comments
 (0)