From f7a3c99be92f05b3a06636831487f665ae784c3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20Harnes?= Date: Mon, 1 Apr 2024 13:16:38 +0200 Subject: [PATCH] fix(tests): remove redundant checks --- tests/config_spec.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/config_spec.lua b/tests/config_spec.lua index 3a5d583..e5c0376 100644 --- a/tests/config_spec.lua +++ b/tests/config_spec.lua @@ -26,13 +26,10 @@ describe("config", function() assert.is_true(config.get_opt("drag_and_drop.enabled")) assert.is_false(config.get_opt("drag_and_drop.insert_mode")) - assert.is_false(config.get_opt("drag_and_drop.copy_images")) - assert.is_true(config.get_opt("drag_and_drop.download_images")) vim.bo.filetype = "markdown" assert.is_true(config.get_opt("url_encode_path")) assert.equals("![$CURSOR]($FILE_PATH)", config.get_opt("template")) - assert.is_false(config.get_opt("drag_and_drop.download_images")) end) it("should allow overriding default values", function()