diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2025-03-26 14:19:47 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2025-03-26 14:49:23 +0100 |
commit | 2e68e9c051dcf1a896b19535513f3fd97e68b415 (patch) | |
tree | ac3a413b3e8319dbb6aba62a9a8b634463cda9d5 /test/functional/lua/diagnostic_spec.lua | |
parent | 0926098e9db51699c73a0451a9ab5824a8bd59dd (diff) | |
download | rneovim-2e68e9c051dcf1a896b19535513f3fd97e68b415.tar.gz rneovim-2e68e9c051dcf1a896b19535513f3fd97e68b415.tar.bz2 rneovim-2e68e9c051dcf1a896b19535513f3fd97e68b415.zip |
fix: temporarily disable 0.12 deprecation tests
Re-enable these after release.
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 e9636742d7..0b77291379 100644 --- a/test/functional/lua/diagnostic_spec.lua +++ b/test/functional/lua/diagnostic_spec.lua @@ -2667,7 +2667,7 @@ describe('vim.diagnostic', function() it('respects legacy signs placed with :sign define or sign_define #26618', function() -- Legacy signs for diagnostics were deprecated in 0.10 and will be removed in 0.12 - eq(0, n.fn.has('nvim-0.12')) + -- eq(0, n.fn.has('nvim-0.12')) n.command('sign define DiagnosticSignError text= texthl= linehl=ErrorMsg numhl=ErrorMsg') n.command('sign define DiagnosticSignWarn text= texthl= linehl=WarningMsg numhl=WarningMsg') |