From 51ff6b7556122c0fafd417a6afa528da80b131f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wiktor=20Obr=C4=99bski?= Date: Thu, 21 Nov 2024 21:32:02 +0100 Subject: [PATCH] Drop now redundant TextArea tests version boundary --- test/library/gui/widgets.TextArea.lua | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/library/gui/widgets.TextArea.lua b/test/library/gui/widgets.TextArea.lua index 4b246ec456..0223b05282 100644 --- a/test/library/gui/widgets.TextArea.lua +++ b/test/library/gui/widgets.TextArea.lua @@ -3,8 +3,6 @@ local widgets = require('gui.widgets') config.target = 'core' -local df_major_version = tonumber(dfhack.getCompiledDFVersion():match('%d+')) - local function simulate_input_keys(...) local keys = {...} for _,key in ipairs(keys) do @@ -2881,11 +2879,6 @@ function test.scroll_follows_cursor() screen:dismiss() end -if df_major_version < 51 then - -- temporary ignore test features that base on newest API of the DF game - return -end - function test.fast_rewind_words_right() local text_area, screen, window = arrange_textarea({w=55})