[dw-free] unit tests fail due to prototype mismatch
[commit: http://hg.dwscoalition.org/dw-free/rev/7c6f82b56f02]
http://bugs.dwscoalition.org/show_bug.cgi?id=1833
Fix "use Encode" call to avoid prototype mismatch.
Patch by
szabgab.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1833
Fix "use Encode" call to avoid prototype mismatch.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- src/DSMS/lib/DSMS/Message.pm
-------------------------------------------------------------------------------- diff -r 17e2bcf8bc14 -r 7c6f82b56f02 src/DSMS/lib/DSMS/Message.pm --- a/src/DSMS/lib/DSMS/Message.pm Mon Sep 21 06:20:23 2009 +0000 +++ b/src/DSMS/lib/DSMS/Message.pm Tue Sep 22 07:42:56 2009 -0500 @@ -18,7 +18,7 @@ package DSMS::Message; use strict; use Carp qw(croak); -use Encode; +use Encode (); sub new { my $class = shift; --------------------------------------------------------------------------------