Skip to content

Commit e6fca0e

Browse files
svardewchrisbra
authored andcommitted
patch 9.0.1936: test: using wrong expected message in test_crypt
Problem: test: using wrong expected message in test_crypt Solution: make use of single quotes closes: #13151 Signed-off-by: Christian Brabandt <[email protected]> Co-authored-by: Isao Sato <[email protected]>
1 parent 7fe8f43 commit e6fca0e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/testdir/test_crypt.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ func Test_uncrypt_xchacha20_2()
255255
call assert_match("Note: Encryption of swapfile not supported, disabling swap file", execute(':messages'))
256256
w!
257257
" encrypted using xchacha20
258-
call assert_match("\[xchacha20\]", execute(':messages'))
258+
call assert_match('\[xchacha20\]', execute(':messages'))
259259
bw!
260260
call feedkeys(":sp Xcrypt_sodium.txt\<CR>sodium\<CR>", 'xt')
261261
" successfully decrypted
@@ -288,7 +288,7 @@ func Test_uncrypt_xchacha20v2_2()
288288
throw 'Skipped: sodium_mlock() not possible'
289289
endtry
290290
" encrypted using xchacha20
291-
call assert_match("\[xchachav2\]", execute(':messages'))
291+
call assert_match('\[xchacha20v2\]', execute(':messages'))
292292
bw!
293293
try
294294
call feedkeys(":verbose :sp Xcrypt_sodium_v2.txt\<CR>sodium\<CR>", 'xt')

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,8 @@ static char *(features[]) =
699699

700700
static int included_patches[] =
701701
{ /* Add new patch number below this line */
702+
/**/
703+
1936,
702704
/**/
703705
1935,
704706
/**/

0 commit comments

Comments
 (0)