From 8f0ecddc2e8a2b664938959d9f984a149d2a2a4a Mon Sep 17 00:00:00 2001 From: rahul4732saini Date: Tue, 9 Jul 2024 13:38:57 +0530 Subject: [PATCH] Update test_delete_query.py Minor updates in documentation --- tests/test_query/test_delete_query.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_query/test_delete_query.py b/tests/test_query/test_delete_query.py index 2a8f323..2cc0410 100644 --- a/tests/test_query/test_delete_query.py +++ b/tests/test_query/test_delete_query.py @@ -139,12 +139,12 @@ def test_path_types(self, index: int, query: str) -> None: @pytest.mark.parametrize(("index", "query"), query_conditions_test_params) def test_query_conditions(self, index: int, query: str) -> None: - """Tests delete query conditions.""" + """Tests file delete query conditions.""" examine_delete_query(query, f"/file/conditions/test{index}") @pytest.mark.parametrize(("index", "query"), nested_conditions_test_params) def test_nested_query_conditions(self, index: int, query: str) -> None: - """Tests nested delete query conditions.""" + """Tests nested file delete query conditions.""" examine_delete_query(query, f"/file/nested_conditions/test{index}") # The following test uses the same delete queries defined for basic query syntax test