patch 8.2.0303: TermChanged test fails in the GUI
Problem: TermChanged test fails in the GUI.
Solution: Skip the test when running the GUI.
diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim
index 70e9608..2ff231d 100644
--- a/src/testdir/test_autocmd.vim
+++ b/src/testdir/test_autocmd.vim
@@ -2387,6 +2387,8 @@
endfunc
func Test_TermChanged()
+ CheckNotGui
+
enew!
tabnew
call setline(1, ['a', 'b', 'c', 'd'])
diff --git a/src/version.c b/src/version.c
index 96ef2c1..97669c0 100644
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 303,
+/**/
302,
/**/
301,