summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIsao Sato <svardew@gmail.com>2023-09-24 23:27:25 +0200
committerChristian Brabandt <cb@256bit.org>2023-09-24 23:27:25 +0200
commite6fca0e82216c753793a85979926b9a28da7e842 (patch)
treea446c89a67c492f0f3a055794d970e57ad553d7f
parent7fe8f43f49f4fa6f024d0e0ea76d3df5b62a0879 (diff)
patch 9.0.1936: test: using wrong expected message in test_cryptv9.0.1936
Problem: test: using wrong expected message in test_crypt Solution: make use of single quotes closes: #13151 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Isao Sato <svardew@gmail.com>
-rw-r--r--src/testdir/test_crypt.vim4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/testdir/test_crypt.vim b/src/testdir/test_crypt.vim
index e2eaed889d..1782d83f32 100644
--- a/src/testdir/test_crypt.vim
+++ b/src/testdir/test_crypt.vim
@@ -255,7 +255,7 @@ func Test_uncrypt_xchacha20_2()
call assert_match("Note: Encryption of swapfile not supported, disabling swap file", execute(':messages'))
w!
" encrypted using xchacha20
- call assert_match("\[xchacha20\]", execute(':messages'))
+ call assert_match('\[xchacha20\]', execute(':messages'))
bw!
call feedkeys(":sp Xcrypt_sodium.txt\<CR>sodium\<CR>", 'xt')
" successfully decrypted
@@ -288,7 +288,7 @@ func Test_uncrypt_xchacha20v2_2()
throw 'Skipped: sodium_mlock() not possible'
endtry
" encrypted using xchacha20
- call assert_match("\[xchachav2\]", execute(':messages'))
+ call assert_match('\[xchacha20v2\]', execute(':messages'))
bw!
try
call feedkeys(":verbose :sp Xcrypt_sodium_v2.txt\<CR>sodium\<CR>", 'xt')
diff --git a/src/version.c b/src/version.c
index 7517452d3f..54ab5539d0 100644
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1936,
+/**/
1935,
/**/
1934,