diff options
author | Gregory Anders <greg@gpanders.com> | 2021-11-24 19:38:48 -0700 |
---|---|---|
committer | Gregory Anders <greg@gpanders.com> | 2021-11-24 20:03:38 -0700 |
commit | 25ab7c6c0af2dd7ba2bb70fa6081b2ca5cfb8774 (patch) | |
tree | 71c46e3efccbefecc31ab6a86d5cf3049eefb5d4 | |
parent | c59f2008e0d4998094123e4976210a78e8f6b4d0 (diff) | |
download | rneovim-25ab7c6c0af2dd7ba2bb70fa6081b2ca5cfb8774.tar.gz rneovim-25ab7c6c0af2dd7ba2bb70fa6081b2ca5cfb8774.tar.bz2 rneovim-25ab7c6c0af2dd7ba2bb70fa6081b2ca5cfb8774.zip |
test(diagnostic): uncomment equality check
-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() |