# HG changeset patch # User Bram Moolenaar # Date 1566852304 -7200 # Node ID 70f53ec4db937bc2ca15fcfb5e4602f2048588c6 # Parent 5d329a40052a9a76e4691b2d18f095a9ce2efcdd patch 8.1.1931: syntax test fails Commit: https://github.com/vim/vim/commit/ea7a08a53ea0e8b4fe1592d9ae4d8f581fef46f8 Author: Bram Moolenaar Date: Mon Aug 26 22:38:22 2019 +0200 patch 8.1.1931: syntax test fails Problem: Syntax test fails. Solution: Add new javascriptreact type to completions. diff --git a/src/testdir/test_syntax.vim b/src/testdir/test_syntax.vim --- a/src/testdir/test_syntax.vim +++ b/src/testdir/test_syntax.vim @@ -393,7 +393,7 @@ endfunc func Test_ownsyntax_completion() call feedkeys(":ownsyntax java\\\"\", 'tx') - call assert_equal('"ownsyntax java javacc javascript', @:) + call assert_equal('"ownsyntax java javacc javascript javascriptreact', @:) endfunc func Test_highlight_invalid_arg() diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1931, +/**/ 1930, /**/ 1929,