We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75c3aec commit 4fc109aCopy full SHA for 4fc109a
S17-supply/list.t
@@ -14,8 +14,8 @@ for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
14
is-deeply @a, [2..6], "Supply.list works in for";
15
my @b = Supply.from-list(42..50).list;
16
is-deeply @b, [42..50], "Supply.list can be stored in array";
17
- isa-ok Supply.from-list(2..6) .Seq, Seq, "Supply.Seq should return a Seq";
18
- isa-ok Supply.from-list(42..50) .Seq, Seq, "Supply.Seq should return a Seq";
+ isa-ok Supply.from-list(2..6) .list, List, "Supply.list should return a List";
+ isa-ok Supply.from-list(42..50) .list, List, "Supply.list should return a List";
19
}
20
21
# vim: ft=perl6 expandtab sw=4
0 commit comments