Subject: | get_user_info expects wrong data |
The get_user_info documentation says that it expects an NSID as the second parameter.
However, it attempts to use that NSID as a hash reference on line 578. This breaks several
things. I've submitted a patch as an example of the necessary change, but I haven't run it
against your tests.
Subject: | patch.txt |
575c575
< my $user_id = shift;
---
> my $user = shift;
579c579
< { user_id => $user_id },
---
> { user_id => $user->{id} },