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()
1488
1488
public function testPreparedCommandWithMissingValue ()
1489
1489
{
1490
1490
$ 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}" ' );
1492
1492
$ p = Process::fromShellCommandline ('echo "${:abc}" ' );
1493
1493
$ p ->run (null , ['bcd ' => 'BCD ' ]);
1494
1494
}
1495
1495
1496
1496
public function testPreparedCommandWithNoValues ()
1497
1497
{
1498
1498
$ 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}" ' );
1500
1500
$ p = Process::fromShellCommandline ('echo "${:abc}" ' );
1501
1501
$ p ->run (null , []);
1502
1502
}
You can’t perform that action at this time.
0 commit comments