diff src/testdir/test_python2.vim @ 26211:485c7c4afeb7 v8.2.3637

patch 8.2.3637: typos in test files Commit: https://github.com/vim/vim/commit/923dce2b07ff185c0ef661f3eca47bc17655f01b Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Sun Nov 21 11:36:04 2021 +0000 patch 8.2.3637: typos in test files Problem: Typos in test files. Solution: Correct the typos. (Dominique Pell?, closes https://github.com/vim/vim/issues/9175)
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Nov 2021 12:45:04 +0100
parents 04205b7d67d5
children 13b02c1ea0f7
line wrap: on
line diff
--- a/src/testdir/test_python2.vim
+++ b/src/testdir/test_python2.vim
@@ -412,7 +412,7 @@ func Test_python_dict()
   py d = vim.bindeval('d')
   call assert_equal(2, pyeval('len(d)'))
 
-  " Deleting an non-existing key
+  " Deleting a non-existing key
   call AssertException(["py del d['c']"], "Vim(python):KeyError: 'c'")
 endfunc