(self)
| 120 | res_subtask_async.get(disable_sync_subtasks=False) |
| 121 | |
| 122 | def test_without_id(self): |
| 123 | with pytest.raises(ValueError): |
| 124 | AsyncResult(None, app=self.app) |
| 125 | |
| 126 | def test_compat_properties(self): |
| 127 | x = self.app.AsyncResult('1') |
nothing calls this directly
no test coverage detected