Fix unexpected behavior of sequences in StateFilter (#791)

* Fix sequence check behavior in StateFilter

* Add sequence cases to StateFilter tests

* Add the changelog
This commit is contained in:
Daniil Kovalenko 2021-12-29 08:39:28 +07:00 committed by GitHub
parent 7c14a6b16b
commit 6e39f9fada
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 4 deletions

View file

@ -41,6 +41,9 @@ class TestStateFilter:
[[None], None, True],
[None, "state", False],
[[], "state", False],
[[State("state"), "state"], "state", True],
[[MyGroup(), State("state")], "@:state", True],
[[MyGroup, State("state")], "state", False],
],
)
@pytestmark