about summary refs log tree commit diff stats
path: root/source_text_tests.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-04-03 08:33:07 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-04-03 08:33:07 -0700
commit282983d0848db077c0dd6400a6f29b34f78f5806 (patch)
treef5711ef3ebc3eb83280d566a13d91f0577971dab /source_text_tests.lua
parent95342345a827616c9f5fa7c914c02505d9e6ff4d (diff)
downloadlines.love-282983d0848db077c0dd6400a6f29b34f78f5806.tar.gz
switch source side to new screen-line-based render
Also copy over the implementation of links from pensieve.love.
Diffstat (limited to 'source_text_tests.lua')
-rw-r--r--source_text_tests.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/source_text_tests.lua b/source_text_tests.lua
index 9ec7e7f..bb3387f 100644
--- a/source_text_tests.lua
+++ b/source_text_tests.lua
@@ -977,7 +977,7 @@ function test_pagedown_can_start_from_middle_of_long_wrapping_line()
   y = y + Editor_state.line_height
   App.screen.check(y, 'jkl ', 'screen:2')
   y = y + Editor_state.line_height
-  App.screen.check(y, 'mno ', 'screen:3')
+  App.screen.check(y, 'mn', 'screen:3')
 end
 
 function test_pagedown_never_moves_up()