patch 8.2.0432: a few tests fail in a huge terminal
Problem: A few tests fail in a huge terminal.
Solution: Make the tests pass. (Dominique Pelle, closes #5829)
diff --git a/src/testdir/test_options.vim b/src/testdir/test_options.vim
index 5cae272..f5e0e9b 100644
--- a/src/testdir/test_options.vim
+++ b/src/testdir/test_options.vim
@@ -396,8 +396,7 @@
func Test_set_one_column()
let out_mult = execute('set all')->split("\n")
let out_one = execute('set! all')->split("\n")
- " one column should be two to four times as many lines
- call assert_inrange(len(out_mult) * 2, len(out_mult) * 4, len(out_one))
+ call assert_true(len(out_mult) < len(out_one))
endfunc
func Test_set_values()