Add shared_dirs column to printStatus_whenNotJSON test

This commit is contained in:
James Murdza
2025-09-29 13:48:39 -07:00
parent 28954a7097
commit b692684a2f

View File

@@ -76,12 +76,13 @@ struct VMDetailsPrinterTests {
let headerParts = printedLines[0].split(whereSeparator: \.isWhitespace)
#expect(
headerParts == [
"name", "os", "cpu", "memory", "disk", "display", "status", "storage", "ip", "vnc",
"name", "os", "cpu", "memory", "disk", "display", "status", "storage", "shared_dirs", "ip", "vnc",
])
#expect(
printedLines[1].split(whereSeparator: \.isWhitespace).map(String.init) == [
"name", "os", "2", "0.00G", "24.0B/30.0B", "1024x768", "status", "mockLocation",
"-",
"0.0.0.0",
"vncUrl",
])