Skip to content

Commit

Permalink
Relax test stats profiling2 (#8621)
Browse files Browse the repository at this point in the history
  • Loading branch information
fjetter committed Apr 17, 2024
1 parent 587d472 commit 3f13a2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/tests/test_worker.py
Expand Up @@ -1224,7 +1224,7 @@ async def test_statistical_profiling_2(c, s, a, b):

profile = await a.get_profile()
text = str(profile)
if profile["count"] and "sum" in text and "random" in text:
if profile["count"] and "sum" in text or "random" in text:
break


Expand Down

0 comments on commit 3f13a2d

Please sign in to comment.