Fix serialize tests

This commit is contained in:
Simon Lamon
2022-02-02 17:18:35 +00:00
parent a359647683
commit 9473777e43
@@ -412,7 +412,7 @@ export class SerializeAddon implements ITerminalAddon {
const correctRows = (scrollback === undefined) ? maxRows : constrain(scrollback + terminal.rows, 0, maxRows);
return handler.serialize({
start: { x: maxRows - correctRows, y: 0 },
end: { x: maxRows, y: 0 }
end: { x: maxRows, y: terminal.cols }
});
}