Skip to content

Commit

Permalink
Normalize use of indicators in TAP output
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jan 8, 2023
1 parent b6a3abe commit 9192900
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion t/12-rakuast/call.rakutest
Expand Up @@ -6,7 +6,7 @@ plan 18;

my $ast;
my $deparsed;
my @type = <AST string AST string>;
my @type = <AST Str AST Str>;
sub ast(RakuAST::Node:D $node --> Nil) {
$ast := $node;
$deparsed := $node.DEPARSE;
Expand Down
2 changes: 1 addition & 1 deletion t/12-rakuast/circumfix.rakutest
Expand Up @@ -6,7 +6,7 @@ plan 7;

my $ast;
my $deparsed;
my @type = <AST string>;
my @type = <AST Str>;
sub ast(RakuAST::Node:D $node --> Nil) {
$ast := $node;
$deparsed := $ast.DEPARSE;
Expand Down
2 changes: 1 addition & 1 deletion t/12-rakuast/heredocs.rakutest
Expand Up @@ -9,7 +9,7 @@ plan 13;

my $ast;
my $deparsed;
my @type = <AST string>;
my @type = <AST Str>;
sub ast(RakuAST::Node:D $node --> Nil) {
$ast := $node;
$deparsed := $ast.DEPARSE;
Expand Down
2 changes: 1 addition & 1 deletion t/12-rakuast/literals.rakutest
Expand Up @@ -18,7 +18,7 @@ sub ast-ok(

is-deeply $deparsed, $string, 'deparse';
is-deeply EVAL($ast), $value, 'AST';
is-deeply EVAL($deparsed), $value, 'string';
is-deeply EVAL($deparsed), $value, 'Str';
}
}

Expand Down
2 changes: 1 addition & 1 deletion t/12-rakuast/meta-operators.rakutest
Expand Up @@ -6,7 +6,7 @@ plan 5;

my $ast;
my $deparsed;
my @type = <AST string>;
my @type = <AST Str>;
sub ast(RakuAST::Node:D $node --> Nil) {
$ast := $node;
$deparsed := $node.DEPARSE;
Expand Down
2 changes: 1 addition & 1 deletion t/12-rakuast/operators.rakutest
Expand Up @@ -6,7 +6,7 @@ plan 28;

my $ast;
my $deparsed;
my @type = |<AST string> xx *;
my @type = |<AST Str> xx *;
sub ast(RakuAST::Node:D $node --> Nil) {
$ast := $node;
$deparsed := $node.DEPARSE;
Expand Down
2 changes: 1 addition & 1 deletion t/12-rakuast/pair.rakutest
Expand Up @@ -6,7 +6,7 @@ plan 8;

my $ast;
my $deparsed;
my @type = <AST string>;
my @type = <AST Str>;
sub ast(RakuAST::Node:D $node --> Nil) {
$ast := $node;
$deparsed := $node.DEPARSE;
Expand Down
2 changes: 1 addition & 1 deletion t/12-rakuast/strings.rakutest
Expand Up @@ -9,7 +9,7 @@ plan 13;

my $ast;
my $deparsed;
my @type = <AST string>;
my @type = <AST Str>;
sub ast(RakuAST::Node:D $node --> Nil) {
$ast := $node;
$deparsed := $node.DEPARSE;
Expand Down

0 comments on commit 9192900

Please sign in to comment.