Skip to content

Commit c887278

Browse files
committed
chore: fix broken test
1 parent 8db34ee commit c887278

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_filters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class Params(
7878

7979
assert params["filter[name]"] == "test_name"
8080
assert params["filter[creator][email]"] == ["test@email.com"]
81-
assert params["filter[project][id]"] == dummy_project_ref.id
81+
assert params["filter[project][id]"] == str(dummy_project_ref.id)
8282
assert sorted(params["filter[properties]"]) == sorted(
8383
["(hello,1)", "(goodbye,false)", '(how,"yes")']
8484
)

0 commit comments

Comments
 (0)