1
0
Fork 0
forked from sr2/cloud-api

feat: minimum lengths for names

This commit is contained in:
Chris Milne 2026-06-12 15:58:20 +01:00
parent 092e12a892
commit 43ed768f66
4 changed files with 13 additions and 15 deletions

View file

@ -215,7 +215,7 @@ def generate_query_and_status(params) -> list[tuple[str, int]]:
def generate_body_and_status(params: dict[str, str]) -> list[tuple[dict, int]]:
possible_values_int = [0, -1, 42, "banana", ""]
possible_values_str = [0]
possible_values_str = [0, "", "a"]
defaults = [{param: 1 for param in params.keys()}]