Skip to content

Commit c887819

Browse files
committed
fix test descriptions
1 parent a96285b commit c887819

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

S03-smartmatch/scalar-hash.t

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ use v6;
22
use Test;
33
plan 3;
44

5-
#L<S03/"Smart matching"/Scalar Hash hash entry existence>
5+
#L<S03/"Smart matching"/Cool Hash hash entry existence>
66
{
77
my %h = (moep => 'foo', bar => Mu);
8-
ok ('moep' ~~ %h), 'Scalar ~~ Hash (+, True)';
9-
ok ('bar' ~~ %h), 'Scalar ~~ Hash (+, False)';
10-
ok !('foo' ~~ %h), 'Scalar ~~ Hash (-)';
8+
ok ('moep' ~~ %h), 'Cool ~~ Hash (+, True)';
9+
ok ('bar' ~~ %h), 'Cool ~~ Hash (+, False)';
10+
ok !('foo' ~~ %h), 'Cool ~~ Hash (-)';
1111
}
1212

1313
done;

0 commit comments

Comments
 (0)