diff options
author | Jim Meyering <jim@meyering.net> | 2003-01-07 14:44:45 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-01-07 14:44:45 +0000 |
commit | 84cdbe6529c6342f98e80a5812150320367a8652 (patch) | |
tree | 55dff76a0a0748072cf053e8ddefd05955567d4b | |
parent | 72d00a1c57f23b209b98583a570b0e12d3700b09 (diff) | |
download | coreutils-84cdbe6529c6342f98e80a5812150320367a8652.tar.xz |
Fix typo: s/ld/ls/.
-rwxr-xr-x | tests/touch/fail-diag | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/touch/fail-diag b/tests/touch/fail-diag index a77a89687..b7abd195a 100755 --- a/tests/touch/fail-diag +++ b/tests/touch/fail-diag @@ -22,7 +22,7 @@ cd $tmp || framework_failure=1 d1=/no-$$ dir=/$d1/such-dir # Ensure that $d1 doesn't already exist. -ld -d $d1 2> /dev/null && framework_failure=1 +ls -d $d1 2> /dev/null && framework_failure=1 if test $framework_failure = 1; then echo 'failure in testing framework' 1>&2 |