diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-04-06 09:52:39 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-04-06 09:52:39 +0100 |
commit | d4b629d054c4d4673eb40198700efd5b01407cb7 (patch) | |
tree | aa54aeaeb4c9cdec5f70b20c14d303b1a37d2e87 /t | |
parent | c31c2913381bad74c5f1f5c67c4d9c6e037550ad (diff) | |
download | perl-d4b629d054c4d4673eb40198700efd5b01407cb7.tar.gz |
c31c2913 swaps the order of uninitialised warnings, so update test expectations
Diffstat (limited to 't')
-rw-r--r-- | t/lib/warnings/9uninit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/warnings/9uninit b/t/lib/warnings/9uninit index 3a2d17a08a..8cd4c3f35f 100644 --- a/t/lib/warnings/9uninit +++ b/t/lib/warnings/9uninit @@ -910,8 +910,8 @@ $v = oct $m1; $v = oct; $v = length; # does not warn EXPECT -Use of uninitialized value $g1 in atan2 at - line 5. Use of uninitialized value $m1 in atan2 at - line 5. +Use of uninitialized value $g1 in atan2 at - line 5. Use of uninitialized value $m1 in sin at - line 6. Use of uninitialized value $m1 in cos at - line 7. Use of uninitialized value $m1 in rand at - line 8. |