Skip to content

Commit

Permalink
[BUGFIX] Use single quotes
Browse files Browse the repository at this point in the history
Related: #1228
  • Loading branch information
Starkmann authored and oliverklee committed Dec 24, 2024
1 parent bf15358 commit 5bf678b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Functional/Controller/TeaControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function indexActionRendersAllAvailableTeas(): void
*/
public function showActionRendersTheGivenTeas(): void
{
$request = (new InternalRequest())->withPageId(1)->withQueryParameters(["tx_tea_teashow[tea]" => 1]);
$request = (new InternalRequest())->withPageId(1)->withQueryParameters(['tx_tea_teashow[tea]' => 1]);

$html = (string)$this->executeFrontendSubRequest($request)->getBody();

Expand Down

0 comments on commit 5bf678b

Please sign in to comment.