Skip to content

Commit 5daa2a2

Browse files
authored
Fix flaky test (#1522)
2 parents 9225f08 + 61345e9 commit 5daa2a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/test_project.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ def test_project(client, rand_gen):
3939
assert project.description == update_data["description"]
4040

4141
project.delete()
42-
projects = list(client.get_projects())
42+
projects = list(client.get_projects(where=(Project.uid == project.uid)))
43+
4344
assert project not in projects
4445

4546

0 commit comments

Comments
 (0)