From f39d74b2316ac4711e37113be078927d78a4f8b4 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 5 Oct 2024 15:17:13 -0500 Subject: [PATCH] reduce --- tests/test_quoting.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/test_quoting.py b/tests/test_quoting.py index 57fac6dd..8ba1a735 100644 --- a/tests/test_quoting.py +++ b/tests/test_quoting.py @@ -1,7 +1,7 @@ from typing import Type import pytest -from hypothesis import HealthCheck, assume, example, given, note, settings +from hypothesis import assume, example, given, note from hypothesis import strategies as st from yarl._quoting import NO_EXTENSIONS @@ -479,7 +479,6 @@ def test_fuzz__PyUnquoter(ignore, unsafe, qs): @example(text_input="0", quoter=_PyQuoter, unquoter=_PyUnquoter) -@settings(suppress_health_check=(HealthCheck.function_scoped_fixture,)) @given( quoter=quoters, unquoter=unquoters, @@ -501,7 +500,6 @@ def test_quote_unquote_parameter( @example(text_input="0", quoter=_PyQuoter, unquoter=_PyUnquoter) -@settings(suppress_health_check=(HealthCheck.function_scoped_fixture,)) @given( quoter=quoters, unquoter=unquoters, @@ -523,7 +521,6 @@ def test_quote_unquote_parameter_requote( @example(text_input="0", quoter=_PyQuoter, unquoter=_PyUnquoter) -@settings(suppress_health_check=(HealthCheck.function_scoped_fixture,)) @given( quoter=quoters, unquoter=unquoters,