From 2693081249e8d2a0b41b9b0d650edb5ba5004ec3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci-lite[bot]" <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 18:38:09 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Auto=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_json_form_syntaxes.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/test_json_form_syntaxes.py b/tests/test_json_form_syntaxes.py index e646136b6..98cb516ba 100644 --- a/tests/test_json_form_syntaxes.py +++ b/tests/test_json_form_syntaxes.py @@ -1,7 +1,7 @@ import json from typing import Annotated, Any -from fastapi import FastAPI, Form, Query +from fastapi import FastAPI, Form from fastapi.testclient import TestClient from pydantic import Json @@ -104,9 +104,7 @@ def test_form_json_nested_annotated(): def test_form_json_invalid_json_equals(): - response = client.post( - "/form-json-equals-syntax", data={"data": "not valid json{"} - ) + response = client.post("/form-json-equals-syntax", data={"data": "not valid json{"}) assert response.status_code == 422