Skip to content

Commit 632768d

Browse files
committed
Fixed Tests
1 parent 2556991 commit 632768d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cumulusci/cli/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _rule(fill="=", length=60, new_line=False):
8989
checks = plans[plan_name]["checks"]
9090

9191
# Check if there are no checks available under the plan
92-
if checks.length == 0:
92+
if len(checks) == 0:
9393
raise click.UsageError(
9494
f"No checks exists for the '{plan_name}'. To view available checks run: `cci checks info`"
9595
)

0 commit comments

Comments
 (0)