From: Jason Stephenson Date: Thu, 23 Oct 2014 23:13:15 +0000 (-0400) Subject: Fix a case issue in NCIP::Const::AUTHENTICATIONINPUT_MESSAGES. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9c43d4f0da23ec038213753a224b4e6076b77439;p=working%2FNCIPServer.git Fix a case issue in NCIP::Const::AUTHENTICATIONINPUT_MESSAGES. We had LookUpUser and it should have been LookupUser. Signed-off-by: Jason Stephenson --- diff --git a/lib/NCIP/Const.pm b/lib/NCIP/Const.pm index 661c1b2..26bb79f 100644 --- a/lib/NCIP/Const.pm +++ b/lib/NCIP/Const.pm @@ -26,6 +26,6 @@ use constant SUPPORTED_VERSIONS => ( # Messages for which AuthenticationInput are valid. use constant AUTHENTICATIONINPUT_MESSAGES => ( - 'LookUpUser', 'RenewItem', 'CheckOutItem', 'RequestItem', + 'LookupUser', 'RenewItem', 'CheckOutItem', 'RequestItem', ); 1;