summaryrefslogtreecommitdiff
path: root/tests/uniq
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-10-04 07:50:09 +0000
committerJim Meyering <jim@meyering.net>2001-10-04 07:50:09 +0000
commit63b6a548e157b822912f846901c25257a96f6917 (patch)
treea498129b6e239e4ca8c04a44d84ba5562d616fdd /tests/uniq
parentf27c09a303a9d6c9e1899cb0bf78402926e0a933 (diff)
downloadcoreutils-63b6a548e157b822912f846901c25257a96f6917.tar.xz
adjust to use new option-arg name
Diffstat (limited to 'tests/uniq')
-rw-r--r--tests/uniq/Test.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/uniq/Test.pm b/tests/uniq/Test.pm
index 880dcc1e9..934863f0a 100644
--- a/tests/uniq/Test.pm
+++ b/tests/uniq/Test.pm
@@ -79,9 +79,9 @@ my @tv = (
['113', '--all-repeated=separate',"a\na\n", "a\na\n", 0],
['114', '--all-repeated=separate',"a\na\nb\nc\nc\n", "a\na\n\nc\nc\n", 0],
['115', '--all-repeated=separate',"a\na\nb\nb\nc\n", "a\na\n\nb\nb\n", 0],
-['116', '--all-repeated=precede', "a\na\n", "\na\na\n", 0],
-['117', '--all-repeated=precede', "a\na\nb\nc\nc\n", "\na\na\n\nc\nc\n", 0],
-['118', '--all-repeated=precede', "a\nb\n", "", 0],
+['116', '--all-repeated=prepend', "a\na\n", "\na\na\n", 0],
+['117', '--all-repeated=prepend', "a\na\nb\nc\nc\n", "\na\na\n\nc\nc\n", 0],
+['118', '--all-repeated=prepend', "a\nb\n", "", 0],
['119', '--all-repeated=badoption', "a\n", "", 1],
);