diff options
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/exec.t | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/exec.t b/tests/exec.t index 689bd26..9425420 100755 --- a/tests/exec.t +++ b/tests/exec.t @@ -11,7 +11,7 @@ is(it::shell_command("echo {arg}", array('arg' => '')), "echo ''", "quote empty  foreach (array("", "C", "de_CH", "de_CH.utf8") as $locale) {  	setlocale(LC_ALL, $locale); -	$arg = "preüpost"; +	$arg = "preüpost";  	if (it::match('utf8', $locale))  		$arg = utf8_encode($arg);  	is(it::exec("echo " . $arg), $arg . "\n", "exec with umlaut (locale '$locale')"); |