Skip to content

Commit 1a8344b

Browse files
committed
update to symfony 5.2, phpspreadsheet 1.17
1 parent 3b3ff53 commit 1a8344b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/Functional/ConfigFunctionalTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function testPreCalculateFormulas()
4040
public function testXmlCacheDirectory()
4141
{
4242
// make request to fill the disk cache
43-
$response = $this->_getResponse('test_default', ['templateName' => 'simple']);
43+
$response = $this->getResponse('test_default', ['templateName' => 'simple']);
4444
static::assertNotNull($response, 'Response does not exist');
4545

4646
/**

tests/Functional/OdsXlsXlsxFunctionalTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function testSimple($format)
5757
*/
5858
public function testCustomResponse($format)
5959
{
60-
$response = $this->_getResponse('test_custom_response', ['templateName' => 'simple', '_format' => $format]);
60+
$response = $this->getResponse('test_custom_response', ['templateName' => 'simple', '_format' => $format]);
6161

6262
static::assertNotNull($response, 'Response does not exist');
6363
static::assertContains('foobar.bin', $response->headers->get('Content-Disposition'), 'Unexpected or missing header "Content-Disposition"');

tests/Twig/CsvOdsXlsXlsxErrorTwigTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function testStartCellIndexError($format)
9393
public function testStartRowIndexError($format)
9494
{
9595
$this->expectException(TypeError::class);
96-
$this->expectExceptionMessage('Argument 1 passed to MewesK\TwigSpreadsheetBundle\Wrapper\PhpSpreadsheetWrapper::startRow() must be of the type int or null');
96+
$this->expectExceptionMessage('Argument 1 passed to Erelke\TwigSpreadsheetBundle\Wrapper\PhpSpreadsheetWrapper::startRow() must be of the type int or null');
9797

9898
$this->getDocument('rowIndexError', $format);
9999
}

0 commit comments

Comments
 (0)