Skip to content

Commit ff4805c

Browse files
committed
Don't write to OUT in tests
1 parent 571b2a3 commit ff4805c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

S12-enums/thorough.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ ok Bool::True.perl ~~/^ 'Bool::True'/, 'Bool::True.perl';
108108
# RT #101900
109109
#?rakudo todo 'RT #101900'
110110
{
111-
throws-like 'enum rt_101900 < a b >; class A { }; say A but rt_101900::a',
111+
throws-like 'enum rt_101900 < a b >; class A { }; note A but rt_101900::a',
112112
Exception,
113113
"Cannot mixin an enum into a class";
114114
}

S32-exceptions/misc.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ throws-like 'my class A { ... }; my class A is repr("Uninstantiable") { }', X::T
279279
throws-like 'gather { return 1}', X::ControlFlow::Return;
280280

281281
# RT #123732
282-
throws-like 'for ^5 { .say; NEXT { return } }', X::ControlFlow::Return;
282+
throws-like 'for ^5 { NEXT { return } }', X::ControlFlow::Return;
283283
throws-like 'for ^5 { return; }', X::ControlFlow::Return;
284284
throws-like 'return;', X::ControlFlow::Return;
285285

0 commit comments

Comments
 (0)