From f4c56d383aff2a4bbdae205409150848bc0176d3 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Fri, 5 Mar 2021 21:20:38 -0500 Subject: [PATCH] Fix failing test --- tests/ANSITest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ANSITest.php b/tests/ANSITest.php index b4f7fe7..f4293f5 100644 --- a/tests/ANSITest.php +++ b/tests/ANSITest.php @@ -19,7 +19,7 @@ class ANSITest extends TestCase { public function testMoveCursor(): void { - $this->assertEquals("\e[25;40H", ANSI::moveCursor(25, 40)); + $this->assertEquals("\e[25;40H", ANSI::moveCursor(24, 39)); } public function testScrollUp(): void