Fix analyze-memory test path expectations on Windows

This commit is contained in:
J. Nick Koston
2026-08-20 01:38:21 -05:00
parent 5df08d36be
commit 3ae229f218
+4 -3
View File
@@ -7269,10 +7269,11 @@ def test_command_analyze_memory_arduino_toolchain(
result = command_analyze_memory(MockArgs(), config)
assert result == 0
# str(Path(...)) so the expectation matches the platform's separators
mock_memory_analyzer_cli.assert_called_once_with(
"/build/firmware.elf",
"/tc/objdump",
"/tc/readelf",
str(Path("/build/firmware.elf")),
str(Path("/tc/objdump")),
str(Path("/tc/readelf")),
set(),
idedata=None,
)