New issue 5 by lpenou: V2_0.pm : sub CreateUser reports an error when
number of parameters is valid
http://code.google.com/p/vuser/issues/detail?id=5
On line 498 we have :
if (@_ >= 4 and @_ <= 7) {
should be changed to :
if (@_ <= 4 and @_ > 7) {
Otherwise error is reported when the numer of parameters is ok
Attached file should work (comment prefixed with LP: )
Attachments:
V2_0.pm 39.3 KB
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Comment #1 on issue 5 by perlstalker: V2_0.pm : sub CreateUser reports an
error when number of parameters is valid
http://code.google.com/p/vuser/issues/detail?id=5
A fix has been committed (r571) which should resolve this.