diff --git a/S32-str/split.t b/S32-str/split.t index 441c030763..bf3cfcc0c9 100644 --- a/S32-str/split.t +++ b/S32-str/split.t @@ -519,8 +519,7 @@ subtest '.split works on Cool same as it works on Str' => { plan 11; my $m = Match.new( - ast => Any, list => (), hash => Map.new(()), - orig => "123", to => 2, from => 1, + ast => Any, orig => "123", to => 2, from => 1, ); is-eqv 123.split('2', :v), ('1', '2', '3').Seq, ':v; Cool';