aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/old/testdir/test_breakindent.vim6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/old/testdir/test_breakindent.vim b/test/old/testdir/test_breakindent.vim
index f271e6f2ea..de25f9b787 100644
--- a/test/old/testdir/test_breakindent.vim
+++ b/test/old/testdir/test_breakindent.vim
@@ -726,8 +726,9 @@ func Test_breakindent20_cpo_n_nextpage()
norm! 5gj
redraw!
let lines = s:screen_lines(1, 20)
+ " FIXME: this is not the right result
let expect = [
- \ "<<< aaaaaaaaaaaaaaaa",
+ \ "<<<aaaaaaaaaaaaaaaaa",
\ " aaaaaaaaaaaaaaaa",
\ " aaaaaaaaaaaaaaaa",
\ ]
@@ -745,8 +746,9 @@ func Test_breakindent20_cpo_n_nextpage()
" Scroll down one screen line
norm! 5gj
let lines = s:screen_lines(1, 20)
++ " FIXME: this is not the right result
let expect = [
- \ "<<< aaaaaaaaaaaaaa",
+ \ "<<<aaaaaaaaaaaaaaaaa",
\ " aaaaaaaaaaaaaa",
\ " aaaaaaaaaaaaaa",
\ ]