From: Scott L. <sla...@th...> - 2002-09-18 16:55:37
|
On Wed, 18 Sep 2002, Mattia Barbon wrote: > > > > t/08_ovl_func.........Usage: Wx::Brush::newBitmap(CLASS, stipple) > > > > at t/08_ovl_func.t line 44. > > > > # No tests run! > > > > > > > > `stipple' is a Wx::Bitmap. I don't know what causes the error. > > > Works for me. Can you reproduce it and if yes, with which perl version > > > (perl -v output). > > > > Hmm, it still gives this error. > > perl 5.8.0 > Fixed. If you are curious it was a bug in the test (not the code): > Until perl 5.8.0 foo::bar => 'xx' was equivalent to 'foo::bar' => 'xx'; > starting from 5.8 it is equivalent to foo::bar() => 'xx'. Holy cow, that's crazy! Glad I'm in the habit of quoting strings (bitten by CGI.pm -values parameter). Thanks. |