Skip to content

Commit 3f4f68f

Browse files
committed
Properly skip infrequent polling test on time-skipping server
Fixes #184
1 parent b4cf80e commit 3f4f68f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/polling/infrequent/workflow_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
async def test_infrequent_polling_workflow(client: Client, env: WorkflowEnvironment):
13-
if not env.supports_time_skipping:
13+
if env.supports_time_skipping:
1414
pytest.skip("Too slow to test with time-skipping disabled")
1515

1616
# Start a worker that hosts the workflow and activity implementations.

0 commit comments

Comments
 (0)