about summary refs log tree commit diff stats
path: root/text.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-05-29 16:03:02 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-29 16:03:02 -0700
commit6aeb89386cfe050d3c5afad886f711d48cc2d518 (patch)
treefb4452201fbddc572445e07a76cfef04e156c474 /text.lua
parentf17f5a1192c29af43b0dc4bb10371c69a299a1d2 (diff)
downloadlines.love-6aeb89386cfe050d3c5afad886f711d48cc2d518.tar.gz
.
Diffstat (limited to 'text.lua')
-rw-r--r--text.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/text.lua b/text.lua
index 923f3d3..87c8368 100644
--- a/text.lua
+++ b/text.lua
@@ -987,7 +987,7 @@ function test_backspace_over_selection()
 end
 
 function test_backspace_over_selection_reverse()
-  io.write('\ntest_backspace_over_selection')
+  io.write('\ntest_backspace_over_selection_reverse')
   -- select just one character within a line with cursor after selection
   App.screen.init{width=25+30, height=60}
   Lines = load_array{'abc', 'def', 'ghi', 'jkl', 'mno'}
@@ -1006,7 +1006,7 @@ function test_backspace_over_selection_reverse()
 end
 
 function test_backspace_over_multiple_lines()
-  io.write('\ntest_backspace_over_selection')
+  io.write('\ntest_backspace_over_multiple_lines')
   -- select just one character within a line with cursor after selection
   App.screen.init{width=25+30, height=60}
   Lines = load_array{'abc', 'def', 'ghi', 'jkl', 'mno'}
@@ -1026,7 +1026,7 @@ function test_backspace_over_multiple_lines()
 end
 
 function test_backspace_to_end_of_line()
-  io.write('\ntest_backspace_over_selection')
+  io.write('\ntest_backspace_to_end_of_line')
   -- select region from cursor to end of line
   App.screen.init{width=25+30, height=60}
   Lines = load_array{'abc', 'def', 'ghi', 'jkl', 'mno'}
@@ -1046,7 +1046,7 @@ function test_backspace_to_end_of_line()
 end
 
 function test_backspace_to_start_of_line()
-  io.write('\ntest_backspace_over_selection')
+  io.write('\ntest_backspace_to_start_of_line')
   -- select region from cursor to start of line
   App.screen.init{width=25+30, height=60}
   Lines = load_array{'abc', 'def', 'ghi', 'jkl', 'mno'}