Skip to content

Commit

Permalink
Issue #1802: quote the argument of 'echo'
Browse files Browse the repository at this point in the history
Otherwise the test string would be interpreted as a list of strings,
implicitly squashing multiple spaces into a single space.
  • Loading branch information
bschmalhofer committed Jun 7, 2022
1 parent a54ab6b commit 5016def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test/Selenium/Output/Dashboard/CmdOutput.t
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $Selenium->RunTest(
my %CmdParam = (
Block => 'ContentSmall',
CacheTTL => 60,
Cmd => "echo $CmdMessage",
Cmd => qq{echo "$CmdMessage"},
Default => 1,
Description => '',
Group => '',
Expand Down

0 comments on commit 5016def

Please sign in to comment.