diff --git a/tests/Reader/StringReaderTest.php b/tests/Reader/StringReaderTest.php
index 00ec1a2..78ed036 100644
--- a/tests/Reader/StringReaderTest.php
+++ b/tests/Reader/StringReaderTest.php
@@ -26,13 +26,13 @@ class StringReaderTest extends TestCase
             'moveToNextLines' => [],
         ],
         [
-            'original' => " 中文 \r\n\r 这是 \r Is A \n\n 一个 新的 TOken",
+            'original' => " 中文 \r\n\r 这是 \r Is A \n\n 一个\n新的 TOken",
             'tokens' => ["中文", "这是", "Is", "A", "一个", "新的", "TOken"],
             'nextTokens' => ["这是", "Is", "A", "一个", "新的", "TOken", ""],
             'positions' => [1, 8, 13, 16, 21, 24, 27],
-            'lines' => [1, 3, 4, 4, 6, 6, 6],
-            'linePositions' => [1, 1, 1, 4, 1, 4, 7],
-            'moveToNextLines' => [1, 2, 4],
+            'lines' => [1, 3, 4, 4, 6, 7, 7],
+            'linePositions' => [1, 1, 1, 4, 1, 0, 3],
+            'moveToNextLines' => [1, 2, 4, 5],
         ]
     ];