silly whitespace fix

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2009-07-18 17:26:25 +02:00
parent c1fc3d3000
commit e414896f38

View File

@ -50,7 +50,7 @@ testing "uniq input - (specify stdout)" "uniq input -" \
testing "uniq -c (occurrence count)" "uniq -c | sed 's/^[ \t]*//'" \
"1 one\n2 two\n3 three\n" "" \
"one\ntwo\ntwo\nthree\nthree\nthree\n"
testing "uniq -d (dups only) " "uniq -d" "two\nthree\n" "" \
testing "uniq -d (dups only)" "uniq -d" "two\nthree\n" "" \
"one\ntwo\ntwo\nthree\nthree\nthree\n"
testing "uniq -f -s (skip fields and chars)" "uniq -f2 -s 3" \