aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2021-12-11 07:09:54 +0800
committerzeertzjq <zeertzjq@outlook.com>2021-12-11 07:10:01 +0800
commit5b153f5d3de755c5cbd358ea84b1441697c92ae6 (patch)
treed77bbdee5ebb949c3a0d883950acb3814c847855
parent3f8703093de56254ffdbf8ef6ddbe7942af54257 (diff)
downloadrneovim-5b153f5d3de755c5cbd358ea84b1441697c92ae6.tar.gz
rneovim-5b153f5d3de755c5cbd358ea84b1441697c92ae6.tar.bz2
rneovim-5b153f5d3de755c5cbd358ea84b1441697c92ae6.zip
test: remove references to misc1.c
-rw-r--r--test/functional/api/extmark_spec.lua6
-rw-r--r--test/unit/os/shell_spec.lua1
2 files changed, 3 insertions, 4 deletions
diff --git a/test/functional/api/extmark_spec.lua b/test/functional/api/extmark_spec.lua
index 45a01be620..a8f538b951 100644
--- a/test/functional/api/extmark_spec.lua
+++ b/test/functional/api/extmark_spec.lua
@@ -420,7 +420,7 @@ describe('API/extmarks', function()
end)
it('marks move with open line', function()
- -- open_line in misc1.c
+ -- open_line in change.c
-- testing marks below are also moved
feed("yyP")
set_extmark(ns, marks[1], 0, 4)
@@ -489,7 +489,7 @@ describe('API/extmarks', function()
end)
it('marks move with line splits (using enter)', function()
- -- open_line in misc1.c
+ -- open_line in change.c
-- testing marks below are also moved
feed("yyP")
set_extmark(ns, marks[1], 0, 4)
@@ -500,7 +500,7 @@ describe('API/extmarks', function()
end)
it('marks at last line move on insert new line', function()
- -- open_line in misc1.c
+ -- open_line in change.c
set_extmark(ns, marks[1], 0, 4)
feed('0i<cr><esc>')
check_undo_redo(ns, marks[1], 0, 4, 1, 4)
diff --git a/test/unit/os/shell_spec.lua b/test/unit/os/shell_spec.lua
index a73fc8e47e..29a2b78491 100644
--- a/test/unit/os/shell_spec.lua
+++ b/test/unit/os/shell_spec.lua
@@ -4,7 +4,6 @@ local cimported = helpers.cimport(
'./src/nvim/os/shell.h',
'./src/nvim/option_defs.h',
'./src/nvim/main.h',
- './src/nvim/misc1.h',
'./src/nvim/memory.h'
)
local ffi, eq = helpers.ffi, helpers.eq