diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/exec.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/exec.t b/tests/exec.t index 4702681..da5113d 100755 --- a/tests/exec.t +++ b/tests/exec.t @@ -52,14 +52,14 @@ is( "... with disabled short option" ); is( - it::shell_command("echo {--opts}", array('--opts' => array('longopt' => true))), + it::shell_command("echo {-opts}", array('-opts' => array('longopt' => true))), "echo --longopt", - "... long option without dashes for --opts" + "... long option without dashes" ); is( - it::shell_command("echo {--opts}", array('--opts' => array('s' => true))), + it::shell_command("echo {-opts}", array('-opts' => array('s' => true))), "echo -s", - "... short option without dashes for --opts" + "... short option without dashes" ); foreach (array("", "C", "de_CH", "de_CH.utf8") as $locale) { |