diff options
author | James McCoy <jamessan@jamessan.com> | 2017-01-18 15:16:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-18 15:16:07 -0500 |
commit | 75e6af44e03e706df896df8b57d8e29c9a0d0f41 (patch) | |
tree | 7a95e954fefc4c7abc75e751e0bb355a9685b68a /test/functional/ui/screen_basic_spec.lua | |
parent | 2ee60e5b28fbe27e128305858937ca5d6aa0031e (diff) | |
parent | e2b031a3423fe34b8a5f0c6a48e4a4db20beda4f (diff) | |
download | rneovim-75e6af44e03e706df896df8b57d8e29c9a0d0f41.tar.gz rneovim-75e6af44e03e706df896df8b57d8e29c9a0d0f41.tar.bz2 rneovim-75e6af44e03e706df896df8b57d8e29c9a0d0f41.zip |
Merge pull request #5963 from jamessan/screen-expect-clarity
test: screen: Assert expected row count matches configured screen height
Diffstat (limited to 'test/functional/ui/screen_basic_spec.lua')
-rw-r--r-- | test/functional/ui/screen_basic_spec.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/functional/ui/screen_basic_spec.lua b/test/functional/ui/screen_basic_spec.lua index 12c6818f7d..0824585717 100644 --- a/test/functional/ui/screen_basic_spec.lua +++ b/test/functional/ui/screen_basic_spec.lua @@ -562,11 +562,10 @@ describe('Screen', function() ]]) end) - -- FIXME this has some race conditions that cause it to fail periodically - pending('has minimum width/height values', function() + it('has minimum width/height values', function() screen:try_resize(1, 1) screen:expect([[ - -- INS^ERT --| + {2:-- INS^ERT --}| | ]]) feed('<esc>:ls') |