From 06419627e2172cf457b21e09bb5ee3a5cc21294f Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Thu, 22 Aug 2024 10:59:34 +0100 Subject: [PATCH] tests/plugins/nvim-osc52: use new `test.checkWarnings` option --- tests/test-sources/plugins/utils/nvim-osc52.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test-sources/plugins/utils/nvim-osc52.nix b/tests/test-sources/plugins/utils/nvim-osc52.nix index cf461c94..4d913fcb 100644 --- a/tests/test-sources/plugins/utils/nvim-osc52.nix +++ b/tests/test-sources/plugins/utils/nvim-osc52.nix @@ -1,10 +1,9 @@ -{ pkgs, ... }: { empty = { plugins.nvim-osc52.enable = true; # Hide warnings, since this plugin is deprecated - warnings = pkgs.lib.mkForce [ ]; + test.checkWarnings = false; }; defaults = { @@ -22,6 +21,6 @@ }; # Hide warnings, since this plugin is deprecated - warnings = pkgs.lib.mkForce [ ]; + test.checkWarnings = false; }; }