patch 8.2.5096: terminal test still fails with some shell commands

Problem:    Terminal test still fails with some shell commands.
Solution:   Add missing "call".  (closes #10530)
diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim
index b64d5cf..d0f1438 100644
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -1222,7 +1222,7 @@
   let buf = RunVimInTerminal('', {})
 
   " the shell may set the window title, we don't want that here
-  call term_sendkeys(buf, ":test_override('vterm_title', 1)\<CR>")
+  call term_sendkeys(buf, ":call test_override('vterm_title', 1)\<CR>")
 
   " Open a terminal window and wait for the prompt to appear
   call term_sendkeys(buf, ":term\<CR>")
diff --git a/src/version.c b/src/version.c
index e4d5553..3ee54db 100644
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    5096,
+/**/
     5095,
 /**/
     5094,