Per LP#
1099595, just copy the constant inline instead of requiring the
SIPServer code to be installed on every instance where you don't want
'make check' to fail. (Skipping the test in the absence of the SIPServer
code would be another option, but then you're skipping the test, and for
the sake of 1 constant, that seems like a bad trade.)
Signed-off-by: Dan Scott <dan@coffeecode.net>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
use DateTime::Format::ISO8601;
use Encode;
use Unicode::Normalize;
-use Sip::Constants qw(SIP_DATETIME);
my $U = 'OpenILS::Application::AppUtils';
use Digest::MD5 qw(md5_hex);
+# Copied from Sip::Constants
+use constant {
+ SIP_DATETIME => "%Y%m%d %H%M%S",
+};
+
sub new {
my ($class, $institution, $login) = @_;
my $type = ref($class) || $class;