diff options
Diffstat (limited to 't/lib')
-rw-r--r-- | t/lib/warnings/pp_sys | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/lib/warnings/pp_sys b/t/lib/warnings/pp_sys index a358819240..173d0d85eb 100644 --- a/t/lib/warnings/pp_sys +++ b/t/lib/warnings/pp_sys @@ -452,9 +452,9 @@ getc() on closed filehandle FH2 at - line 12. # pp_sys.c [pp_sselect] use warnings 'misc'; $x = 1; -select $x, undef, undef, undef; +select $x, undef, undef, 1; no warnings 'misc'; -select $x, undef, undef, undef; +select $x, undef, undef, 1; EXPECT Non-string passed as bitmask at - line 4. ######## |