diff --git a/test/signatures.vim b/test/signatures.vim index baaf9af..06533f2 100644 --- a/test/signatures.vim +++ b/test/signatures.vim @@ -97,7 +97,7 @@ describe 'signatures' let funcname = repeat('a', &columns - (30 + (&ruler ? 18 : 0))) put = 'def '.funcname.'(arg1, arg2, arg3, a, b, c):' put = ' pass' - execute "normal o".funcname."( " + execute "normal o\".funcname."( " Expect Signature() == "\n".funcname."(arg1, …)" exe 'normal sarg1, ' @@ -112,7 +112,7 @@ describe 'signatures' g/^/d put = 'def '.funcname.'('.repeat('b', 20).', arg2):' put = ' pass' - execute "normal o".funcname."( " + execute "normal o\".funcname."( " Expect Signature() == "\n".funcname."(…)" end