Skip to content

Commit

Permalink
Ensure all exclude_values are sequences
Browse files Browse the repository at this point in the history
  • Loading branch information
padraic-shafer authored Jan 18, 2023
1 parent 43c5c88 commit 145b348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiled/_tests/test_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def test_notin(query_values):
"include_values,exclude_values",
[
(["foo", "bar"], ["baz"]),
(("foo", "bar"), ("baz")),
(("foo", "bar"), ("baz",)),
({"foo", "bar"}, {"baz"}),
({"foo", "bar", "foo", "bar", "bar"}, {"baz", "baz", "baz"}),
],
Expand Down

0 comments on commit 145b348

Please sign in to comment.