Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xricksanchez committed Dec 27, 2022
1 parent 23c8452 commit 8f5f24b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/test_debuggee.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_infer_qemu_fs_mount_qcow2(sp_mock) -> None:
mock = MagicMock()
mock.configure_mock(**{"stdout": b"filesystem.qcow2: QEMU QCOW Image (v3), 12344321 bytes (v3), 12345678 bytes"})
sp_mock.return_value = mock
assert d.infer_qemu_fs_mount() == f" -drive file={d.rootfs},format=raw"
assert d.infer_qemu_fs_mount() == f" -drive file={d.rootfs}"


@patch("subprocess.run")
Expand Down

0 comments on commit 8f5f24b

Please sign in to comment.