summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_expr.vim
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-01-02 16:51:11 +0100
committerChristian Brabandt <cb@256bit.org>2024-01-02 16:51:11 +0100
commitb4ddc6c11e95cef4b372e239871fae1c8d4f72b6 (patch)
tree48a5ed89f937d41bed49ad773ac0cb6ecbb1724e /src/testdir/test_expr.vim
parent6c1afa3d0bdfce3ac1197b00409ac1afa7cf368a (diff)
patch 9.1.0000: Vim 9.1 releasev9.1.0000v9.1.0
Problem: Need a new release Solution: Release Vim 9.1 Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/testdir/test_expr.vim')
-rw-r--r--src/testdir/test_expr.vim4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_expr.vim b/src/testdir/test_expr.vim
index d94ba4b58c..c1869c1d1f 100644
--- a/src/testdir/test_expr.vim
+++ b/src/testdir/test_expr.vim
@@ -36,11 +36,13 @@ func Test_version()
call assert_true(has('patch-7.1.999'))
call assert_true(has('patch-7.4.123'))
call assert_true(has('patch-7.4.123 ')) " Trailing space can be allowed.
+ call assert_true(has('patch-9.1.0'))
+ call assert_true(has('patch-9.1.0000'))
call assert_false(has('patch-7'))
call assert_false(has('patch-7.4'))
call assert_false(has('patch-7.4.'))
- call assert_false(has('patch-9.1.0'))
+ call assert_false(has('patch-9.2.0'))
call assert_false(has('patch-9.9.1'))
call assert_false(has('patch-abc'))