Skip to content

Commit 2dedea3

Browse files
committed
Tidy leading whitespace
... in test block testing 'goto'.
1 parent d0b10b7 commit 2dedea3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

t/op/eval.t

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -224,13 +224,13 @@ is(do {
224224
# (BUG ID 20010305.003 (#5963))
225225
{
226226
eval {
227-
eval { goto foo; };
228-
like($@, qr/Can't "goto" into the middle of a foreach loop/,
229-
'eval catches bad goto calls');
230-
last;
231-
foreach my $i (1) {
232-
foo: fail('jumped into foreach');
233-
}
227+
eval { goto foo; };
228+
like($@, qr/Can't "goto" into the middle of a foreach loop/,
229+
'eval catches bad goto calls');
230+
last;
231+
foreach my $i (1) {
232+
foo: fail('jumped into foreach');
233+
}
234234
};
235235
fail("Outer eval didn't execute the last");
236236
diag($@);

0 commit comments

Comments
 (0)