From 80020a66a4f81f2bb27963952afeda24723fd55f Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 30 Nov 2024 10:08:56 +0100 Subject: [PATCH] Fix CS --- tests/Node/Expression/FilterTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Node/Expression/FilterTest.php b/tests/Node/Expression/FilterTest.php index a794ceea14..d5ee15ddda 100644 --- a/tests/Node/Expression/FilterTest.php +++ b/tests/Node/Expression/FilterTest.php @@ -114,7 +114,7 @@ public static function provideTests(): iterable // from extension $node = self::createFilter($environment, $string, 'foo'); - $tests[] = [$node, \sprintf('$this->extensions[\'%s\']->foo("abc")', \get_class(self::createExtension())), $environment]; + $tests[] = [$node, \sprintf('$this->extensions[\'%s\']->foo("abc")', self::createExtension()::class), $environment]; $node = self::createFilter($environment, $string, 'foobar'); $tests[] = [$node, '$this->env->getFilter(\'foobar\')->getCallable()("abc")', $environment];