Update of /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP
In directory usw-pr-cvs1:/tmp/cvs-serv5251
Modified Files:
WebTest.pm.in
Log Message:
Added workaround for warning caused by underscore char in $VERSION
Index: WebTest.pm.in
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest.pm.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** WebTest.pm.in 17 Feb 2002 10:48:51 -0000 1.5
--- WebTest.pm.in 22 Mar 2002 07:43:15 -0000 1.6
***************
*** 6,9 ****
--- 6,11 ----
$VERSION = '1.99_04';
+ # workaround for warning caused by underscore char in $VERSION
+ $VERSION = eval $VERSION;
# actual content of HTTP::WebTest package is in HTTP::WebTest::API
|