Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix some copy&pasted test names to reflect what's actually being tested
  • Loading branch information
niner committed Aug 16, 2015
1 parent 9aa1eef commit 6eae697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S17-supply/unique.t
Expand Up @@ -69,7 +69,7 @@ for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
my $s = Supply.new;
tap-ok $s.unique( :with( {$^a.lc eq $^b.lc} ), :expires(2) ),
[<a b c B>],
'unique with as and expiry works',
'unique with with and expiry works',
:after-tap( {
$s.emit("a");
sleep 1;
Expand All @@ -89,7 +89,7 @@ for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
tap-ok $s.unique(
:as( *.substr(0,1) ), :with( {$^a.lc eq $^b.lc} ), :expires(2) ),
[<a bb c B>],
'unique with as and expiry works',
'unique with with, as and expiry works',
:after-tap( {
$s.emit("a");
sleep 1;
Expand Down

0 comments on commit 6eae697

Please sign in to comment.