From 2e68e9c051dcf1a896b19535513f3fd97e68b415 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Wed, 26 Mar 2025 14:19:47 +0100 Subject: fix: temporarily disable 0.12 deprecation tests Re-enable these after release. --- test/functional/lua/diagnostic_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional/lua') 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') -- cgit