Skip to content

Commit d4b605a

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

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/unit/rql/query_builder/test_rql_or.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ def test_or_merge(): # noqa: WPS210
6868
assert [r1, r2, r3, r4] == result.children
6969

7070

71-
def test_kwaargs_dict_value_is_sometime_an_iterable(mocker): # noqa: WPS210
71+
def test_kwaargs_dict_value_is_sometime_an_iterable(mocker): # noqa: WPS118 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)