diff options
Diffstat (limited to 'tests/misc/uniq')
-rwxr-xr-x | tests/misc/uniq | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/uniq b/tests/misc/uniq index f7211a330..91028a9c7 100755 --- a/tests/misc/uniq +++ b/tests/misc/uniq @@ -86,7 +86,7 @@ my $locale = $ENV{LOCALE_FR}; and CuSkip::skip "$prog: skipping this test -- no appropriate locale\n"; # See if isblank returns true for nbsp. -my $x = `env printf '\xa0'| LC_ALL=$locale tr '[:blank:]' x`; +my $x = qx!env printf '\xa0'| LC_ALL=$locale tr '[:blank:]' x!; # If so, expect just one line of output in the schar test. # Otherwise, expect two. my $in = " y z\n\xa0 y z\n"; |