Skip to content

Commit ba7ac66

Browse files
committed
fix: 测试集两个值反了
1 parent f6bed34 commit ba7ac66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llcomNext/llcomTest/TerminalCommandTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void TestMultiple()
3131
("\x1b[?25h", TerminalCommand.Show, (25, 0), 6),
3232
("\x1b[2J", TerminalCommand.ClearScreen, (2, 0), 4),
3333
("\x1b[H", TerminalCommand.ResetCursor, (0, 0), 3),
34-
("\x1b[10;20H", TerminalCommand.MoveCursorTo, (10, 20), 8),
34+
("\x1b[10;20H", TerminalCommand.MoveCursorTo, (20, 10), 8),
3535
("\x1b[2A", TerminalCommand.MoveCursorUp, (2, 0), 4),
3636
("\x1b[10A", TerminalCommand.MoveCursorUp, (10, 0), 5),
3737
("\x1b[m", TerminalCommand.ResetStyle, (0, 0), 3),

0 commit comments

Comments
 (0)