Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
reverse is non-flattening now
  • Loading branch information
TimToady committed Sep 20, 2015
1 parent 5463a12 commit 247d3fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S17-supply/minmax.t
Expand Up @@ -19,7 +19,7 @@ for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
tap-ok Supply.from-list("a".."e","A".."E").minmax(*.uc),
[("a".."a"),("a".."b"),("a".."c"),("a".."d"),("a".."e")],
"ascending alpha works";
tap-ok Supply.from-list(reverse("a".."e","A".."E")).minmax(*.lc),
tap-ok Supply.from-list(reverse(flat "a".."e","A".."E")).minmax(*.lc),
[("E".."E"),("D".."E"),("C".."E"),("B".."E"),("A".."E")],
"descending alpha works";
}

0 comments on commit 247d3fb

Please sign in to comment.