forked from GNUsocial/gnu-social
[TESTS] Fix deprecations
This commit is contained in:
parent
ec9a9cec13
commit
c8b2a7a2e0
@ -19,9 +19,9 @@
|
|||||||
namespace App\Tests\Util\Form\ActorArrayTransformer;
|
namespace App\Tests\Util\Form\ActorArrayTransformer;
|
||||||
|
|
||||||
use App\Entity\Poll;
|
use App\Entity\Poll;
|
||||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
class PollTest extends WebTestCase
|
class PollTest extends TestCase
|
||||||
{
|
{
|
||||||
public function testPoll()
|
public function testPoll()
|
||||||
{
|
{
|
||||||
|
@ -53,12 +53,13 @@ class ExtensionTest extends KernelTestCase
|
|||||||
|
|
||||||
//Check if every icon file as a ".svg.twig" extension
|
//Check if every icon file as a ".svg.twig" extension
|
||||||
foreach ($icon_file_names as $icon_file_name) {
|
foreach ($icon_file_names as $icon_file_name) {
|
||||||
static::assertRegExp('/.svg.twig/', $icon_file_name);
|
static::assertMatchesRegularExpression('/.svg.twig/', $icon_file_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Check if the function gives a valid HTML with a class attribute equal to the one passed
|
//Check if the function gives a valid HTML with a class attribute equal to the one passed
|
||||||
static::bootKernel();
|
static::bootKernel();
|
||||||
$twig = self::$kernel->getContainer()->get('twig');
|
$container = self::$kernel->getContainer()->get('test.service_container');
|
||||||
|
$twig = $container->get('twig');
|
||||||
|
|
||||||
foreach ($icon_file_names as $icon_file_name) {
|
foreach ($icon_file_names as $icon_file_name) {
|
||||||
$icon_name = basename($icon_file_name, '.svg.twig');
|
$icon_name = basename($icon_file_name, '.svg.twig');
|
||||||
|
Loading…
Reference in New Issue
Block a user