We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9ca318 commit 476df47Copy full SHA for 476df47
src/ffpuppet/test_ffpuppet.py
@@ -460,8 +460,9 @@ def test_ffpuppet_19(tmp_path):
460
461
def test_ffpuppet_20(mocker, tmp_path):
462
"""test collecting and cleaning up ASan logs"""
463
- fake_symbolize = mocker.patch("ffpuppet.core.symbolize_log", autospec=True)
464
- # add fake llvm-symbolizer for coverage
+ # return False to increase test coverage, does not affect the test otherwise
+ fake_symbolize = mocker.patch("ffpuppet.core.symbolize_log", return_value=False)
465
+ # add fake llvm-symbolizer for test coverage
466
(TESTFF_BIN.parent / LLVM_SYMBOLIZER).touch()
467
with FFPuppet() as ffp:
468
ffp.launch(TESTFF_BIN)
0 commit comments