diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-02-23 09:47:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-23 09:47:30 +0100 |
| commit | fb93363c499334d48aa95d40842795be5997817e (patch) | |
| tree | a66214c2ab297764292bf9ba0c0d0d12bac61296 /tests/requests/test_data_upload_settings.py | |
| parent | b1af2cca3aba4cefc69c986d4de6cab6db524bf3 (diff) | |
Fixed DataUploadMaxNumberOfFieldsFormPost.test_number_exceeded().
Follow up to 0ad9fa02e07b853003b3c2244d1015620705f020.
Diffstat (limited to 'tests/requests/test_data_upload_settings.py')
| -rw-r--r-- | tests/requests/test_data_upload_settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/requests/test_data_upload_settings.py b/tests/requests/test_data_upload_settings.py index f7e7ca7aaa..44897cc9fa 100644 --- a/tests/requests/test_data_upload_settings.py +++ b/tests/requests/test_data_upload_settings.py @@ -168,7 +168,7 @@ class DataUploadMaxNumberOfFieldsMultipartPost(SimpleTestCase): class DataUploadMaxNumberOfFieldsFormPost(SimpleTestCase): def setUp(self): - payload = FakePayload("\r\n".join(['a=1&a=2;a=3', ''])) + payload = FakePayload("\r\n".join(['a=1&a=2&a=3', ''])) self.request = WSGIRequest({ 'REQUEST_METHOD': 'POST', 'CONTENT_TYPE': 'application/x-www-form-urlencoded', |
