Skip to content

Commit 7bec724

Browse files
committed
Correct a test with non-STD expectations.
1 parent 0296255 commit 7bec724

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

S02-literals/sub-calls.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ plan 20;
3333
ok eval(q/foo 1, 2; /), 'call with two args, no parens';
3434
ok eval(q/foo(1, 2);/), 'call with two args, has parens';
3535

36-
#?niecza skip 'Undeclared routine "foo:bar"'
37-
ok eval(q/foo:bar; /), 'call with adverb after no space';
36+
dies_ok { eval(q/foo:bar; /) }, 'call with adverb after no space';
3837
ok eval(q/foo :bar; /), 'call with adverb after space';
3938

4039
ok eval(q/foo(:bar); /), 'call with adverb in parens';

0 commit comments

Comments
 (0)