(gz_path, prepared, responses)
| 331 | ext = _make_extractor({gz_a: prepared_a, gz_b: prepared_b}) |
| 332 | |
| 333 | def _finalize(gz_path, prepared, responses): |
| 334 | if gz_path == gz_b: |
| 335 | raise ValueError("boom") |
| 336 | return _make_result(gz_path) |
| 337 | |
| 338 | ext.finalize.side_effect = _finalize |
| 339 |
nothing calls this directly
no test coverage detected