From db08dbad3b784260ce46fe84e6dbd58ad9e4836c Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 2 Aug 2018 16:33:42 -0400 Subject: [PATCH] Streaming is too fast, cancel sooner --- tests/test_tractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_tractor.py b/tests/test_tractor.py index 92a97cd..84cbe36 100644 --- a/tests/test_tractor.py +++ b/tests/test_tractor.py @@ -448,7 +448,7 @@ def test_a_quadruple_example(): assert results -@pytest.mark.parametrize('cancel_delay', list(range(1, 8))) +@pytest.mark.parametrize('cancel_delay', list(range(1, 7))) def test_not_fast_enough_quad(cancel_delay): """Verify we can cancel midway through the quad example and all actors cancel gracefully.