feat: minimum lengths for names
All checks were successful
ci / lint_and_test (push) Successful in 15s
All checks were successful
ci / lint_and_test (push) Successful in 15s
This commit is contained in:
parent
092e12a892
commit
43ed768f66
4 changed files with 13 additions and 15 deletions
|
|
@ -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()}]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue