terminal: fix secondary DA test to match default firmware version

The default firmware_version for Secondary device attributes is 0,
but the test expected a value of 10. Update the test expectation to
match the actual default.
This commit is contained in:
Mitchell Hashimoto
2026-03-23 15:01:26 -07:00
parent ba3f9bb400
commit 701d1d55d2

View File

@@ -211,7 +211,7 @@ test "secondary default" {
var buf: [64]u8 = undefined;
var writer: std.Io.Writer = .fixed(&buf);
try (Secondary{}).encode(&writer);
try testing.expectEqualStrings("\x1b[>1;10;0c", writer.buffered());
try testing.expectEqualStrings("\x1b[>1;0;0c", writer.buffered());
}
test "tertiary default" {