From b692684a2f97705a32f8b59e7c7b7b9695891bdb Mon Sep 17 00:00:00 2001 From: James Murdza Date: Mon, 29 Sep 2025 13:48:39 -0700 Subject: [PATCH] Add shared_dirs column to printStatus_whenNotJSON test --- libs/lume/tests/VM/VMDetailsPrinterTests.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/lume/tests/VM/VMDetailsPrinterTests.swift b/libs/lume/tests/VM/VMDetailsPrinterTests.swift index 42de5f9f..05e0ac5c 100644 --- a/libs/lume/tests/VM/VMDetailsPrinterTests.swift +++ b/libs/lume/tests/VM/VMDetailsPrinterTests.swift @@ -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", ])