summaryrefslogtreecommitdiff
path: root/lib/sort.t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-11-27 00:24:36 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-27 00:24:36 +0000
commitc53fc8a620e539470713c5fc9ecf3b649176ff4a (patch)
tree66c1ba288cf7ddcd060ff722096ba46f2ea9cb86 /lib/sort.t
parent64e1b76789c0fb605467b2e39f8214801faef2f9 (diff)
downloadperl-c53fc8a620e539470713c5fc9ecf3b649176ff4a.tar.gz
sort tweaks from John P. Linderman.
p4raw-id: //depot/perl@13292
Diffstat (limited to 'lib/sort.t')
-rw-r--r--lib/sort.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sort.t b/lib/sort.t
index 6b607161d0..44aaf8ffae 100644
--- a/lib/sort.t
+++ b/lib/sort.t
@@ -12,6 +12,6 @@ BEGIN {
ok(sort::current() eq 'mergesort');
}
-use sort 'fast';
-ok(sort::current() eq 'quicksort fast');
+use sort qw( stable _qsort );
+ok(sort::current() eq 'quicksort stable');