drop wrong test (fix merge)

This commit is contained in:
Robin Chalas 2019-10-29 02:54:26 +01:00
parent 7b3d5cd615
commit 6c2253415f
1 changed files with 0 additions and 8 deletions

View File

@ -63,14 +63,6 @@ class ExpressionLanguageTest extends TestCase
$this->assertSame($savedParsedExpression, $parsedExpression);
}
public function testWrongCacheImplementation()
{
$this->expectException('InvalidArgumentException');
$this->expectExceptionMessage('Cache argument has to implement Psr\Cache\CacheItemPoolInterface.');
$cacheMock = $this->getMockBuilder('Psr\Cache\CacheItemSpoolInterface')->getMock();
new ExpressionLanguage($cacheMock);
}
public function testConstantFunction()
{
$expressionLanguage = new ExpressionLanguage();