diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-11-25 07:28:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-25 07:28:46 -0500 |
commit | 6ea5e80393dbcc6205ee8586c29a097e8a08ad53 (patch) | |
tree | d286c07b9e1d15f763988829a0f9e0650d5ebb4e /test/functional/lua/diagnostic_spec.lua | |
parent | b5b025f6a3ad406929c096f63b5f1e7649d3c818 (diff) | |
parent | 0341c687a35381b360f5f2a89f444490b09c5cda (diff) | |
download | rneovim-6ea5e80393dbcc6205ee8586c29a097e8a08ad53.tar.gz rneovim-6ea5e80393dbcc6205ee8586c29a097e8a08ad53.tar.bz2 rneovim-6ea5e80393dbcc6205ee8586c29a097e8a08ad53.zip |
Merge pull request #16434 from gpanders/diagnostic-clampage
fix(diagnostic): line clamping fixes
Diffstat (limited to 'test/functional/lua/diagnostic_spec.lua')
-rw-r--r-- | test/functional/lua/diagnostic_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/lua/diagnostic_spec.lua b/test/functional/lua/diagnostic_spec.lua index aacb8cf3ae..e1439bfdb4 100644 --- a/test/functional/lua/diagnostic_spec.lua +++ b/test/functional/lua/diagnostic_spec.lua @@ -925,7 +925,7 @@ describe('vim.diagnostic', function() ]] eq(1, exec_lua [[return count_diagnostics(diagnostic_bufnr, vim.diagnostic.severity.ERROR, diagnostic_ns)]]) - -- eq(1, exec_lua [[return count_extmarks(diagnostic_bufnr, diagnostic_ns)]]) + eq(1, exec_lua [[return count_extmarks(diagnostic_bufnr, diagnostic_ns)]]) end) it('allows filtering by severity', function() |