diff options
| author | Alex Morega <alex@grep.ro> | 2022-08-26 17:10:27 +0300 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-08-30 09:57:17 +0200 |
| commit | de6c9c70549010fc39509f9ef3f6a62ada870318 (patch) | |
| tree | fc0206ae8cd3fc3d7a78e76b6ae3e95f4e0505b1 /docs/topics/testing/tools.txt | |
| parent | b3db6c8dcb5145f7d45eff517bcd96460475c879 (diff) | |
Refs #30947 -- Changed tuples to lists where appropriate.
Diffstat (limited to 'docs/topics/testing/tools.txt')
| -rw-r--r-- | docs/topics/testing/tools.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt index 3d7c2b1ebf..8c319287c7 100644 --- a/docs/topics/testing/tools.txt +++ b/docs/topics/testing/tools.txt @@ -237,7 +237,7 @@ Use the ``django.test.Client`` class to make requests. list or tuple for the required key. For example, this value of ``data`` would submit three selected values for the field named ``choices``:: - {'choices': ('a', 'b', 'd')} + {'choices': ['a', 'b', 'd']} Submitting files is a special case. To POST a file, you need only provide the file field name as a key, and a file handle to the file you |
