X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fsrc%2FCore%2FLock%2FDatabaseLockDriverTest.php;h=5f3ef13c128e7de90e9c021aed061dbc92fd235e;hb=28864d8fdd032032938327ebd35ffe2d3d0de3b8;hp=f1c8376af155056705d98c5a8b3fc74d364d02c6;hpb=d56bd28a0762bb5ee293e2e944bdee5df9d24692;p=friendica.git diff --git a/tests/src/Core/Lock/DatabaseLockDriverTest.php b/tests/src/Core/Lock/DatabaseLockDriverTest.php index f1c8376af1..5f3ef13c12 100644 --- a/tests/src/Core/Lock/DatabaseLockDriverTest.php +++ b/tests/src/Core/Lock/DatabaseLockDriverTest.php @@ -1,8 +1,27 @@ . + * + */ namespace Friendica\Test\src\Core\Lock; -use Friendica\Core\Lock\DatabaseLockDriver; +use Friendica\Core\Lock\DatabaseLock; use Friendica\Factory\ConfigFactory; use Friendica\Test\DatabaseTestTrait; use Friendica\Test\Util\Database\StaticDatabase; @@ -38,6 +57,6 @@ class DatabaseLockDriverTest extends LockTest $dba = new StaticDatabase($configCache, $profiler, $logger); - return new DatabaseLockDriver($dba, $this->pid); + return new DatabaseLock($dba, $this->pid); } }