Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
s/is/is-deeply/
  • Loading branch information
zhuomingliang committed Aug 23, 2015
1 parent 4345b0b commit 87b55ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S32-list/seq.t
Expand Up @@ -6,10 +6,10 @@ plan 3;
my @result = 1,2,3;

my @a = (1,2,3).map(*.Int);
is @a, @result, 'seq => array works 1';
is-deeply @a, @result, 'seq => array works 1';

my ($x, @b) = ('xxx', (1,2,3).map(*.Int));
is @b, @result, 'seq => array works 2';
is-deeply @b, @result, 'seq => array works 2';


my @expected-searches = <beer masak vacation whisky>;
Expand Down

0 comments on commit 87b55ac

Please sign in to comment.