summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-06-25 05:33:36 +0200
committerBram Moolenaar <Bram@vim.org>2019-06-25 05:33:36 +0200
commit6c6a603cd2db9cbd51c9b4e3ff44cbab72b98592 (patch)
tree4cf74601ac0dd7ced532c07d792fba10c3680296
parent75fb0854e93913c4d2cfcd6ef634173c4d13a093 (diff)
patch 8.1.1590: popup window test failsv8.1.1590
Problem: Popup window test fails. Solution: Add "scrollbar" to expected result.
-rw-r--r--src/testdir/test_popupwin.vim2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim
index 1e8f522c91..b6cef00370 100644
--- a/src/testdir/test_popupwin.vim
+++ b/src/testdir/test_popupwin.vim
@@ -134,6 +134,7 @@ func Test_popup_with_border_and_padding()
\ 'core_width': 12,
\ 'height': 3,
\ 'core_height': 1,
+ \ 'scrollbar': 0,
\ 'visible': 1}
let winid = popup_create('hello border', {'line': 2, 'col': 3, 'border': []})",
call assert_equal(with_border_or_padding, popup_getpos(winid))
@@ -170,6 +171,7 @@ func Test_popup_with_border_and_padding()
\ 'width': 14,
\ 'core_width': 10,
\ 'height': 5,
+ \ 'scrollbar': 0,
\ 'core_height': 1,
\ 'visible': 1}, popup_getpos(winid))
diff --git a/src/version.c b/src/version.c
index 34af0de9b1..5db753ca4c 100644
--- a/src/version.c
+++ b/src/version.c
@@ -778,6 +778,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1590,
+/**/
1589,
/**/
1588,