Remove unused fixtures

This commit is contained in:
Lucas Brémond 2021-01-17 22:25:40 -08:00
parent bf3c4c6a8b
commit b45286c727
2 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@ from ...compat import ArrayField, MissingType
@pytest.mark.skipif(ArrayField is MissingType, reason="ArrayField should exist") @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. 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") @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. 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") @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. Test contains filter on a string field.
""" """

View File

@ -6,7 +6,7 @@ from ...compat import ArrayField, MissingType
@pytest.mark.skipif(ArrayField is MissingType, reason="ArrayField should exist") @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. 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") @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. 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") @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. Test overlap filter on a string field.
""" """