diff options
Diffstat (limited to 'tests/units/Core/Plugin')
-rw-r--r-- | tests/units/Core/Plugin/SchemaHandlerTest.php (renamed from tests/units/Core/Plugin/LoaderTest.php) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/units/Core/Plugin/LoaderTest.php b/tests/units/Core/Plugin/SchemaHandlerTest.php index 448723d8..98a00e0b 100644 --- a/tests/units/Core/Plugin/LoaderTest.php +++ b/tests/units/Core/Plugin/SchemaHandlerTest.php @@ -2,13 +2,13 @@ require_once __DIR__.'/../../Base.php'; -use Kanboard\Core\Plugin\Loader; +use Kanboard\Core\Plugin\SchemaHandler; -class LoaderTest extends Base +class SchemaHandlerTest extends Base { public function testGetSchemaVersion() { - $p = new Loader($this->container); + $p = new SchemaHandler($this->container); $this->assertEquals(0, $p->getSchemaVersion('not_found')); $this->assertTrue($p->setSchemaVersion('plugin1', 1)); |