minor #31941 [TwigBundle] fix tests (nicolas-grekas)

This PR was merged into the 4.3 branch.

Discussion
----------

[TwigBundle] fix tests

| Q             | A
| ------------- | ---
| Branch?       | 4.3
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

Should make master back to green.

Commits
-------

5b29918043 [TwigBundle] fix tests
This commit is contained in:
Nicolas Grekas 2019-06-07 20:28:14 +02:00
commit bc7e7bbb3b

View File

@ -11,10 +11,13 @@
namespace Symfony\Bundle\TwigBundle\Tests\Loader;
use Symfony\Bundle\FrameworkBundle\Templating\TemplateReference;
use Symfony\Bundle\TwigBundle\Loader\FilesystemLoader;
use Symfony\Bundle\TwigBundle\Tests\TestCase;
use Symfony\Component\Templating\TemplateReferenceInterface;
/**
* @group legacy
*/
class FilesystemLoaderTest extends TestCase
{
public function testGetSourceContext()
@ -61,7 +64,7 @@ class FilesystemLoaderTest extends TestCase
->expects($this->once())
->method('parse')
->with('name.format.engine')
->willReturn(new TemplateReference('', '', 'name', 'format', 'engine'))
->willReturn($this->getMockBuilder(TemplateReferenceInterface::class)->getMock())
;
$locator = $this->getMockBuilder('Symfony\Component\Config\FileLocatorInterface')->getMock();
@ -85,7 +88,7 @@ class FilesystemLoaderTest extends TestCase
->expects($this->once())
->method('parse')
->with('name.format.engine')
->willReturn(new TemplateReference('', '', 'name', 'format', 'engine'))
->willReturn($this->getMockBuilder(TemplateReferenceInterface::class)->getMock())
;
$locator = $this->getMockBuilder('Symfony\Component\Config\FileLocatorInterface')->getMock();