From 479c53611c923ca3639c30eef99ff8691584040f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Wed, 1 Apr 2026 18:09:48 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Tweak=20test=20converage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_vibe.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_vibe.py b/tests/test_vibe.py index 4c7674a7f3..4a79d6b6cd 100644 --- a/tests/test_vibe.py +++ b/tests/test_vibe.py @@ -1,3 +1,5 @@ +from typing import Any + import pytest from fastapi import FastAPI from fastapi.exceptions import FastAPIError @@ -11,5 +13,5 @@ def test_vibe_raises(): "/vibe/", prompt="pls return json of users from database. make no mistakes", ) - async def ai_vibes(body): - pass # pragma: nocover + async def ai_vibes(body: Any): # pragma: nocover + pass