aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-219/mark-anderson/raku/ch-1.raku4
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge-219/mark-anderson/raku/ch-1.raku b/challenge-219/mark-anderson/raku/ch-1.raku
index b6bf41ca47..557f716d45 100644
--- a/challenge-219/mark-anderson/raku/ch-1.raku
+++ b/challenge-219/mark-anderson/raku/ch-1.raku
@@ -1,8 +1,8 @@
#!/usr/bin/env raku
use Test;
-is sorted-squares(-2,-1,0,3,4), (0,1,4,9,16);
-is sorted-squares(5,-4,-1,3,6), (1,9,16,25,36);
+is-deeply sorted-squares(-2,-1,0,3,4), (0,1,4,9,16);
+is-deeply sorted-squares(5,-4,-1,3,6), (1,9,16,25,36);
sub sorted-squares(+$a)
{