Skip to content

Commit

Permalink
t/op/vec.t: White space only.
Browse files Browse the repository at this point in the history
Adds an indentation level following the previous commit's adding a
surrounding block
  • Loading branch information
khwilliamson committed Jun 1, 2017
1 parent 315f3fc commit 270d3c5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions t/op/vec.t
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@ is(vec($x, 0, 8), 255);
$@ = undef;
{
no warnings 'deprecated';
eval { vec($foo, 1, 8) };
ok(! $@);
$@ = undef;
eval { vec($foo, 1, 8) = 13 };
ok(! $@);
if ($::IS_EBCDIC) {
is($foo, "\x8c\x0d\xff\x8a\x69");
}
else {
is($foo, "\xc4\x0d\xc3\xbf\xc3\xbe");
}
eval { vec($foo, 1, 8) };
ok(! $@);
$@ = undef;
eval { vec($foo, 1, 8) = 13 };
ok(! $@);
if ($::IS_EBCDIC) {
is($foo, "\x8c\x0d\xff\x8a\x69");
}
else {
is($foo, "\xc4\x0d\xc3\xbf\xc3\xbe");
}
}
$foo = "\x{100}" . "\xff\xfe";
$x = substr $foo, 1;
Expand Down

0 comments on commit 270d3c5

Please sign in to comment.