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 committed Jul 31, 2024
1 parent d7dd946 commit 8ac9240
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 @@ -72,7 +72,7 @@ public function showActionRendersTheGivenTeas(): void
$request = new InternalRequest();
$request = $request->withPageId(3);
$request = $request->withQueryParameters([
"tx_tea_teashow[tea]" => 1
'tx_tea_teashow[tea]' => 1
]);

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

0 comments on commit 8ac9240

Please sign in to comment.