From 14f099f52fc769aeb71e1d68825c760ad7506214 Mon Sep 17 00:00:00 2001 From: Michael Adkins Date: Thu, 27 Oct 2022 10:43:33 -0500 Subject: [PATCH] Fix version info check :facepalm: --- tests/test_flows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_flows.py b/tests/test_flows.py index bb7d55f8d93e..1ca02621ac6c 100644 --- a/tests/test_flows.py +++ b/tests/test_flows.py @@ -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"