File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1488,15 +1488,15 @@ public function testPreparedCommandWithQuoteInIt()
14881488 public function testPreparedCommandWithMissingValue ()
14891489 {
14901490 $ this ->expectException ('Symfony\Component\Process\Exception\InvalidArgumentException ' );
1491- $ this ->expectExceptionMessage ('Command line is missing a value for parameter "abc": echo "${:abc}". ' );
1491+ $ this ->expectExceptionMessage ('Command line is missing a value for parameter "abc": echo "${:abc}" ' );
14921492 $ p = Process::fromShellCommandline ('echo "${:abc}" ' );
14931493 $ p ->run (null , ['bcd ' => 'BCD ' ]);
14941494 }
14951495
14961496 public function testPreparedCommandWithNoValues ()
14971497 {
14981498 $ this ->expectException ('Symfony\Component\Process\Exception\InvalidArgumentException ' );
1499- $ this ->expectExceptionMessage ('Command line is missing a value for parameter "abc": echo "${:abc}". ' );
1499+ $ this ->expectExceptionMessage ('Command line is missing a value for parameter "abc": echo "${:abc}" ' );
15001500 $ p = Process::fromShellCommandline ('echo "${:abc}" ' );
15011501 $ p ->run (null , []);
15021502 }
You can’t perform that action at this time.
0 commit comments