From 99af5765fc60e584fafdd8554cedb040adc117c7 Mon Sep 17 00:00:00 2001 From: Sasha Szpakowski Date: Thu, 7 Mar 2024 21:00:45 -0400 Subject: [PATCH] tests: don't skip love.graphics.isActive test on vulkan --- testing/tests/graphics.lua | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/testing/tests/graphics.lua b/testing/tests/graphics.lua index 4522e2487..a7bf8e970 100644 --- a/testing/tests/graphics.lua +++ b/testing/tests/graphics.lua @@ -1890,12 +1890,7 @@ end -- love.graphics.isActive love.test.graphics.isActive = function(test) - local name, version, vendor, device = love.graphics.getRendererInfo() - if string.find(name, 'Vulkan') ~= nil then - test:skipTest('love.graphics.isActive() crashes on Vulkan') - else - test:assertTrue(love.graphics.isActive(), 'check graphics is active') -- i mean if you got this far - end + test:assertTrue(love.graphics.isActive(), 'check graphics is active') -- i mean if you got this far end