[Http-webtest-commits] HTTP-WebTest/lib/HTTP/WebTest Parser.pm,1.19,1.20
Brought to you by:
m_ilya,
richardanderson
|
From: Ilya M. <m_...@us...> - 2003-01-25 18:01:25
|
Update of /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest
In directory sc8-pr-cvs1:/tmp/cvs-serv14711
Modified Files:
Parser.pm
Log Message:
Fix bug with 'test_name' parameter
Index: Parser.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Parser.pm,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** Parser.pm 25 Jan 2003 17:46:27 -0000 1.19
--- Parser.pm 25 Jan 2003 18:01:21 -0000 1.20
***************
*** 303,306 ****
--- 303,307 ----
my $param = $params_aref->[2 * $i];
my $value = $params_aref->[2 * $i + 1];
+ next if $param eq 'test_name';
$wtscript .= _write_param_value($params_aref->[2 * $i],
$params_aref->[2 * $i + 1],
|