Skip to content

Commit 2a284e6

Browse files
committed
example test - DELETE
1 parent 18bb2bb commit 2a284e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/rql/query_builder/test_rql_or.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ def test_or_merge(): # noqa: WPS210
7171
def test_kwaargs_dict_value_is_sometime_an_iterable(mocker): # noqa: WPS210
7272
mock_parse_kwargs = mocker.patch("mpt_api_client.rql.query_builder.parse_kwargs", autospec=True)
7373

74-
RQLQuery(field__in=("v1", "v2"))
74+
RQLQuery(field__in=("v1", "v2")) # Act
7575

7676
mock_parse_kwargs.assert_called_once_with({
7777
"field__in": ("v1", "v2")
78-
}) # note value in the dict is an iterable
78+
}) # note value in the dict is an iterable and check the corrected typing in the commit
7979

8080

8181
def test_or_merge_duplicates():

0 commit comments

Comments
 (0)