Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add .Slip around ranges in S17-supply/min.t
  • Loading branch information
moritz committed Aug 22, 2015
1 parent 4468aa5 commit 7c1bd67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S17-supply/min.t
Expand Up @@ -16,8 +16,8 @@ for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
"ascending min works";
tap-ok Supply.from-list(10...1).min, [10...1],
"descending min works";
tap-ok Supply.from-list("a".."e","A".."E").min(*.uc), ["a"],
tap-ok Supply.from-list(("a".."e").Slip,("A".."E").Slip).min(*.uc), ["a"],
"ascending alpha works";
tap-ok Supply.from-list("E"..."A","e".."a").min(*.lc), [<E D C B A>],
tap-ok Supply.from-list("E"..."A",("e".."a").Slip).min(*.lc), [<E D C B A>],
"descending alpha works";
}

0 comments on commit 7c1bd67

Please sign in to comment.