From 3b6ad05b6d4e9f35bd0a4a10dea305046a382110 Mon Sep 17 00:00:00 2001 From: Matthew Barbour Date: Wed, 7 Aug 2019 16:36:24 -0500 Subject: [PATCH] Updated test extension test --- tests/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 40166c21..40102c62 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -25,7 +25,7 @@ abstract class ShimmiePHPUnitTestCase extends \PHPUnit\Framework\TestCase $class = str_replace("Test", "", get_class($this)); if (!class_exists($class)) { $this->markTestSkipped("$class not loaded"); - } elseif (!ext_is_live($class)) { + } elseif (!ExtensionInfo::get_for_extension_class($class)->is_supported()) { $this->markTestSkipped("$class not supported with this database"); }