Skip to content

Commit

Permalink
Fix version info check 🤦
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Oct 27, 2022
1 parent c0226ec commit 14f099f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ def test_timeout_does_not_wait_for_completion_for_sync_flows(self, tmp_path):
continue until the next instruction is reached. `time.sleep` will return then
the thread will be interrupted.
"""
if sys.version_info[1] == "11":
if sys.version_info[1] == 11:
pytest.xfail("The engine returns _after_ sleep finishes in Python 3.11")

canary_file = tmp_path / "canary"
Expand Down

0 comments on commit 14f099f

Please sign in to comment.