Skip to content

Commit

Permalink
reduce
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Oct 5, 2024
1 parent 7bd626f commit f39d74b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/test_quoting.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit f39d74b

Please sign in to comment.