diff options
author | Jim Meyering <jim@meyering.net> | 2006-06-18 17:08:50 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-06-18 17:08:50 +0000 |
commit | 0b1dce2485c751d678b2cdf58f6476256bcb995f (patch) | |
tree | 0c221c9765095df11d99eecabe9a00b71fb3dbe6 /tests/misc/pwd-long | |
parent | bf24627b4fb032008671be06f19ebadee6dd0c04 (diff) | |
download | coreutils-0b1dce2485c751d678b2cdf58f6476256bcb995f.tar.xz |
Fix typo (s/neq/ne/) in previous change.
Diffstat (limited to 'tests/misc/pwd-long')
-rwxr-xr-x | tests/misc/pwd-long | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/pwd-long b/tests/misc/pwd-long index 62b08ae0a..5ae4c0449 100755 --- a/tests/misc/pwd-long +++ b/tests/misc/pwd-long @@ -58,7 +58,7 @@ my $pwd_binary = "$build_src_dir/pwd"; -x $pwd_binary or die "$ME: $pwd_binary is not an executable file\n"; chomp (my $actual = `$pwd_binary`); -if ($expected neq $actual) +if ($expected ne $actual) { my $e_len = length $expected; my $a_len = length $actual; |