Skip to content

Commit

Permalink
Add missing commas to last array element
Browse files Browse the repository at this point in the history
  • Loading branch information
sfroemkenjw committed May 3, 2023
1 parent 8360ef9 commit de863e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
class SecondsToISO8601ViewHelperTest extends FunctionalTestCase
{
protected array $testExtensionsToLoad = [
'typo3conf/ext/video_shariff'
'typo3conf/ext/video_shariff',
];

protected function setUp(): void
Expand Down Expand Up @@ -63,7 +63,7 @@ public function formatSecondsToISO8601(int $seconds, string $expected)
'xmlns:jw="http://typo3.org/ns/JWeiland/VideoShariff/ViewHelpers"',
'data-namespace-typo3-fluid="true">',
'{seconds -> jw:format.secondsToISO8601()}',
'</html>'
'</html>',
]));

$view->assign('seconds', $seconds);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class VideoCreationDateViewHelperTest extends FunctionalTestCase
{
protected array $testExtensionsToLoad = [
'typo3conf/ext/video_shariff'
'typo3conf/ext/video_shariff',
];

protected function setUp(): void
Expand Down Expand Up @@ -70,7 +70,7 @@ public function videoCreateDateReturnContentCreationDate(): void
'xmlns:jw="http://typo3.org/ns/JWeiland/VideoShariff/ViewHelpers"',
'data-namespace-typo3-fluid="true">',
'{jw:videoCreationDate(fileReference: \'{file}\')}',
'</html>'
'</html>',
]));

$view->assign('file', $coreFileReference);
Expand Down Expand Up @@ -120,7 +120,7 @@ public function videoCreateDateReturnCreationDate(): void
'xmlns:jw="http://typo3.org/ns/JWeiland/VideoShariff/ViewHelpers"',
'data-namespace-typo3-fluid="true">',
'{jw:videoCreationDate(fileReference: \'{file}\')}',
'</html>'
'</html>',
]));

$view->assign('file', $coreFileReference);
Expand Down Expand Up @@ -170,7 +170,7 @@ public function videoCreateDateReturnCrdate(): void
'xmlns:jw="http://typo3.org/ns/JWeiland/VideoShariff/ViewHelpers"',
'data-namespace-typo3-fluid="true">',
'{jw:videoCreationDate(fileReference: \'{file}\')}',
'</html>'
'</html>',
]));

$view->assign('file', $coreFileReference);
Expand Down

0 comments on commit de863e0

Please sign in to comment.