From 9ea25da1a89a01e5cf3d678296f863f763f97130 Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Sun, 21 Jul 2019 18:31:55 +0100 Subject: [PATCH] Use setpos as it is clearer --- tests/breakpoints.test.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/breakpoints.test.vim b/tests/breakpoints.test.vim index 7e12308..3ee7675 100644 --- a/tests/breakpoints.test.vim +++ b/tests/breakpoints.test.vim @@ -149,9 +149,8 @@ endfunction function! Test_Use_Mappings_HUMAN() lcd testdata/cpp/simple edit simple.cpp + call setpos( '.', [ 0, 15, 1 ] ) - 15 - normal 0 call AssertCursorIsAtLineInBuffer( 'simple.cpp', 15, 1 ) call AssertSignGroupEmptyAtLine( 'VimspectorBP', @@ -207,6 +206,7 @@ endfunction function Test_StopAtEntry() lcd testdata/cpp/simple edit simple.cpp + call setpos( '.', [ 0, 15, 1 ] ) " Test stopAtEntry behaviour call feedkeys( "\", 'xt' )