Skip to content

Commit b49fcef

Browse files
committed
use RT #XXXX where possible
1 parent d8290e4 commit b49fcef

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

S02-lists/indexing.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use v6;
33
use Test;
44
plan 2;
55

6-
# RT122423
6+
# RT #122423
77
is (42)[*/2], 42, 'Indexing half way into one element list';
88

99
# http://irclog.perlgeek.de/perl6/2015-01-23#i_9994456

S02-literals/adverbs.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ plan 32;
4646
is_deeply ({ :$:f }(:f(3))), (f => 3), 'Adverb with $: twigil works';
4747
is_deeply ({ :@:f }(:f(3,3))), (f => (3,3)), 'Adverb with @: twigil works';
4848
is_deeply ({ :%:f }(:f(:a<3>))), (f => :a<3>), 'Adverb with %: twigil works';
49-
# Not using sigils in rx due to RT#121061 but we do not need to for this
49+
# Not using sigils in rx due to RT #121061 but we do not need to for this
5050
"aaaa" ~~ m/$<fee>=a $<fie>=((a)(a)) $<foe>=($<fum>=(a))/;
5151
is_deeply (:$<fee>), (fee => $<fee>), 'Adverb with $< twigil works';
5252
#?rakudo 2 skip ":@<...> and :%<...> broken needs RT"

S02-types/range.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ is(+Range, 0, 'type numification');
140140
ok(-.2 ~~ $inf, 'negative non-int matches *..*');
141141
}
142142

143-
# ranges constructed from parameters, from RT#63002.
143+
# ranges constructed from parameters, from RT #63002
144144
{
145145
sub foo($a) { ~($a .. 5) };
146146
is(foo(5), '5', 'range constructed from parameter OK');

S03-junctions/misc.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ ok Mu & Mu ~~ Mu, 'Mu & Mu ~~ Mu works';
369369
is rt63686(), 'happiness', 'for loop over junction in sub';
370370
}
371371

372-
# RT#67866: [BUG] [LHF] Error with stringifying .WHAT on any junctions
372+
# RT #67866: [BUG] [LHF] Error with stringifying .WHAT on any junctions
373373
#?rakudo skip 'lower case junction'
374374
#?niecza skip 'Impossible test: === takes Any'
375375
{

S03-operators/fiddly.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use v6;
22
use Test;
33
plan 1;
44

5-
# RT#86340
5+
# RT #86340
66
# The [=] operator is fiddly and complier should not allow it
77

88
my $fiddly_code = 'my ($a, $b) = (1,2); my @c = [=] $a, $b;';

S03-operators/range-basic.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ nok 'b' ~~ 'c'..*, "not 'b' ~~ 'c'..*";
206206
ok 'b' ~~ *..'c', "'b' ~~ *..'c'";
207207
nok 'd' ~~ *..'c', "not 'd' ~~ *..'c'";
208208

209-
# RT#75526: [BUG] Some non-alphanumeric ranges don't work
209+
# RT #75526: [BUG] Some non-alphanumeric ranges don't work
210210
{
211211
ok ' ' ~~ ' '..' ', "' ' ~~ ' '..' '";
212212
ok ' ' ~~ ' '..'A', "' ' ~~ ' '..'A'";

S03-sequence/basic.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ ok ?(one((-5 ... ^5).flat) == 0), '-5 ... ^5 produces just one zero';
137137
#?niecza skip 'Typed exceptions NYI'
138138
throws_like { 1 ... () },
139139
Exception,
140-
'RT# 75698: empty list on right side of sequence operator does not cause infinite loop (but throws exception)',
140+
'RT #75698 - empty list on right side of sequence operator does not cause infinite loop (but throws exception)',
141141
message => 'Element shifted from empty list';
142142

143143
# RT #73508

S04-statements/gather.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ plan 30;
235235
is $c.item, ($(1,10),$(2,20)).list.item, "a list of Parcels, as an item.";
236236
}
237237

238-
#?rakudo skip 'RT#66820'
238+
#?rakudo skip 'RT #66820'
239239
{
240240
my $cat;
241241
lives_ok { my @a := gather for 1..3 { take $_; $cat ~= ~@a }; +@a }, 'can access bound gather result while gathering';

S12-attributes/class.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ dies_ok {$test5 = Quux.bar}, 'class attribute accessor hidden by accessor in sub
5252
is($y.x, 42, "class attributes shared by all instances");
5353
}
5454

55-
# RT#122087
55+
# RT #122087
5656
{
5757
class Woof {
5858
my $.x = 'yap';

S12-attributes/clone.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ lives_ok {
3636
}, '... getting attr from cloned value';
3737
is($val2, 42, '... cloned object has proper attr value');
3838

39-
# Test to cover RT#62828, which exposed a bad interaction between while loops
39+
# Test to cover RT #62828, which exposed a bad interaction between while loops
4040
# and cloning.
4141
{
4242
class A {

0 commit comments

Comments
 (0)