diff --git a/t/primitive-selector.t b/t/primitive-selector.t index 5692aa767..cda12d87a 100644 --- a/t/primitive-selector.t +++ b/t/primitive-selector.t @@ -57,7 +57,8 @@ subtest 'where' => sub { my $x = sequence( 4, 3, 2 ); my $y = ( random($x) < 0.3 ); my $c = whereND( $x, $y ); - ok tapprox( $c->squeeze, where( $x, $y ) ), "vs where"; + my $where = where( $x, $y ); + ok tapprox( $c->squeeze, $where ), "vs where" or diag "x=$x\ny=$y\nwhere=$where\nc=$c"; }; subtest 'lvalue' => sub {