Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for tmp_file_1 (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. tests/test_file_and_form_order_issue_9116.py

    )
    def test_file_list_form_order(endpoint_path: str, tmp_file_1: Path, tmp_file_2: Path):
        response = client.post(
            url=endpoint_path,
            data={"city": "Thimphou"},
            files=(
                ("files", (tmp_file_1.name, tmp_file_1.read_bytes())),
                ("files", (tmp_file_2.name, tmp_file_2.read_bytes())),
            ),
        )
        assert response.status_code == 200, response.text
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 2.3K bytes
    - Click Count (0)
Back to Top