Skip to content

Commit ed12983

Browse files
committed
Updated PHPUnit namespaces
1 parent 0927188 commit ed12983

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Tests/LdapTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@
1111

1212
namespace Symfony\Component\Ldap\Tests;
1313

14+
use PHPUnit\Framework\TestCase;
1415
use Symfony\Component\Ldap\Adapter\AdapterInterface;
1516
use Symfony\Component\Ldap\Adapter\ConnectionInterface;
1617
use Symfony\Component\Ldap\Exception\DriverNotFoundException;
1718
use Symfony\Component\Ldap\Ldap;
1819

19-
class LdapTest extends \PHPUnit_Framework_TestCase
20+
class LdapTest extends TestCase
2021
{
2122
/** @var \PHPUnit_Framework_MockObject_MockObject */
2223
private $adapter;

Tests/LdapTestCase.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
namespace Symfony\Component\Ldap\Tests;
44

5-
class LdapTestCase extends \PHPUnit_Framework_TestCase
5+
use PHPUnit\Framework\TestCase;
6+
7+
class LdapTestCase extends TestCase
68
{
79
protected function getLdapConfig()
810
{

0 commit comments

Comments
 (0)