From ba05946b54dc7d5be31efa2b4a9771745833c159 Mon Sep 17 00:00:00 2001 From: Zoffix Znet Date: Sat, 15 Sep 2018 12:45:21 -0400 Subject: [PATCH] [v6.d REVIEW] Clarify andthen test desc Not all impls might use `andthen` to handle `with` Orig: https://github.com/perl6/roast/commit/e036c4e28 --- S03-operators/andthen.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/S03-operators/andthen.t b/S03-operators/andthen.t index ae7976ac8c..9585eeabd4 100644 --- a/S03-operators/andthen.t +++ b/S03-operators/andthen.t @@ -16,7 +16,7 @@ my $ = 'some arg' andthen -> $x { is $x, 'some arg', 'andthen passes on argument # RT #127822 is (S/a/A/ andthen S/b/B/ given "ab"), "AB", 'andthen with two S///'; -subtest 'Empty in args to andthen does not disappear' => { +subtest 'Empty in args to andthen/with does not disappear' => { plan 3; my $r := do 42 with Empty; is-deeply $r, Empty, 'postfix `with`';