diff --git a/graphene_django/filter/tests/test_contains_filter.py b/graphene_django/filter/tests/test_contains_filter.py index 3e90a3b..35e775e 100644 --- a/graphene_django/filter/tests/test_contains_filter.py +++ b/graphene_django/filter/tests/test_contains_filter.py @@ -6,7 +6,7 @@ from ...compat import ArrayField, MissingType @pytest.mark.skipif(ArrayField is MissingType, reason="ArrayField should exist") -def test_string_contains_multiple(Event, Query): +def test_string_contains_multiple(Query): """ Test contains filter on a string field. """ @@ -32,7 +32,7 @@ def test_string_contains_multiple(Event, Query): @pytest.mark.skipif(ArrayField is MissingType, reason="ArrayField should exist") -def test_string_contains_one(Event, Query): +def test_string_contains_one(Query): """ Test contains filter on a string field. """ @@ -59,7 +59,7 @@ def test_string_contains_one(Event, Query): @pytest.mark.skipif(ArrayField is MissingType, reason="ArrayField should exist") -def test_string_contains_none(Event, Query): +def test_string_contains_none(Query): """ Test contains filter on a string field. """ diff --git a/graphene_django/filter/tests/test_overlap_filter.py b/graphene_django/filter/tests/test_overlap_filter.py index 90e825f..32dfa44 100644 --- a/graphene_django/filter/tests/test_overlap_filter.py +++ b/graphene_django/filter/tests/test_overlap_filter.py @@ -6,7 +6,7 @@ from ...compat import ArrayField, MissingType @pytest.mark.skipif(ArrayField is MissingType, reason="ArrayField should exist") -def test_string_overlap_multiple(Event, Query): +def test_string_overlap_multiple(Query): """ Test overlap filter on a string field. """ @@ -34,7 +34,7 @@ def test_string_overlap_multiple(Event, Query): @pytest.mark.skipif(ArrayField is MissingType, reason="ArrayField should exist") -def test_string_overlap_one(Event, Query): +def test_string_overlap_one(Query): """ Test overlap filter on a string field. """ @@ -61,7 +61,7 @@ def test_string_overlap_one(Event, Query): @pytest.mark.skipif(ArrayField is MissingType, reason="ArrayField should exist") -def test_string_overlap_none(Event, Query): +def test_string_overlap_none(Query): """ Test overlap filter on a string field. """