Skip to content
Snippets Groups Projects
Commit f17717eb authored by Oliver Hader's avatar Oliver Hader Committed by Oliver Hader
Browse files

[TASK] Remove explicit strict test from TypoScriptParserTest

The TypoScriptParser is executed in strict mode by default.

Change-Id: I95a206e184cbafaebe28f1db592bd0f6a6dda4db
Related: #46839
Releases: 6.0, 6.1
Reviewed-on: https://review.typo3.org/19504
Reviewed-by: Oliver Hader
Tested-by: Oliver Hader
parent 58db018e
......@@ -251,18 +251,6 @@ class TypoScriptParserTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
$this->assertEquals($expected, $this->typoScriptParser->setup);
}
/**
* @param string $typoScript
* @param array $expected
* @dataProvider typoScriptIsParsedToArrayDataProvider
* @test
*/
public function typoScriptIsStrictlyParsedToArray($typoScript, array $expected) {
$this->typoScriptParser->strict = TRUE;
$this->typoScriptParser->parse($typoScript);
$this->assertEquals($expected, $this->typoScriptParser->setup);
}
/**
* @return array
*/
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment