patch 8.0.0903: early return from test function
Problem: Early return from test function.
Solution: Remove the return.
diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim
index 9cc3a55..afa6b67 100644
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -266,7 +266,6 @@
endfunc
func Test_finish_close()
- return
" TODO: use something that takes much less than a whole second
echo 'This will take five seconds...'
call assert_equal(1, winnr('$'))
diff --git a/src/version.c b/src/version.c
index ce00ff2..3f8e890 100644
--- a/src/version.c
+++ b/src/version.c
@@ -770,6 +770,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 903,
+/**/
902,
/**/
901,