diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-03 15:03:46 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-03 15:03:46 +0000 |
commit | de4864e4e7ced178416488fa2591227064c3222d (patch) | |
tree | f321dcff676073bbabdd24fce7b8af6e753ca4a4 /t/pragma/warn | |
parent | 936edb8bce14c9708bc6198559047de5d7e6af47 (diff) | |
download | perl-de4864e4e7ced178416488fa2591227064c3222d.tar.gz |
Change the push/unshift warning (#9532) to talk about "no values"
instead of "no arguments".
p4raw-id: //depot/perl@9534
Diffstat (limited to 't/pragma/warn')
-rw-r--r-- | t/pragma/warn/op | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/pragma/warn/op b/t/pragma/warn/op index ab2124ea77..62268fc513 100644 --- a/t/pragma/warn/op +++ b/t/pragma/warn/op @@ -894,5 +894,5 @@ no warnings 'misc' ; push(@x); unshift(@x); EXPECT -Useless use of push with no arguments at - line 4. -Useless use of unshift with no arguments at - line 5. +Useless use of push with no values at - line 4. +Useless use of unshift with no values at - line 5. |