(self)
| 117 | class test_link_error: |
| 118 | @flaky |
| 119 | def test_link_error_eager(self): |
| 120 | exception = ExpectedException("Task expected to fail", "test") |
| 121 | result = fail.apply(args=("test",), link_error=return_exception.s()) |
| 122 | actual = result.get(timeout=TIMEOUT, propagate=False) |
| 123 | assert actual == exception |
| 124 | |
| 125 | @flaky |
| 126 | def test_link_error(self): |
nothing calls this directly
no test coverage detected