We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18bb2bb commit 2a284e6Copy full SHA for 2a284e6
tests/unit/rql/query_builder/test_rql_or.py
@@ -71,11 +71,11 @@ def test_or_merge(): # noqa: WPS210
71
def test_kwaargs_dict_value_is_sometime_an_iterable(mocker): # noqa: WPS210
72
mock_parse_kwargs = mocker.patch("mpt_api_client.rql.query_builder.parse_kwargs", autospec=True)
73
74
- RQLQuery(field__in=("v1", "v2"))
+ RQLQuery(field__in=("v1", "v2")) # Act
75
76
mock_parse_kwargs.assert_called_once_with({
77
"field__in": ("v1", "v2")
78
- }) # note value in the dict is an iterable
+ }) # note value in the dict is an iterable and check the corrected typing in the commit
79
80
81
def test_or_merge_duplicates():
0 commit comments