refactor: rewrite python provider in lua

This commit is contained in:
dundargoc
2024-01-07 13:05:03 +01:00
committed by dundargoc
parent 13d50c3b13
commit eb5d15e383
11 changed files with 175 additions and 178 deletions

View File

@@ -169,7 +169,7 @@ func Test_Catch_Exception_Message()
try
py3 raise RuntimeError( 'TEST' )
catch /.*/
call assert_match('^Vim(.*):.*RuntimeError: TEST$', v:exception )
call assert_match('^Vim(.*):.*RuntimeError: TEST.*$', v:exception )
endtry
endfunc