diff --git a/t/SIP_ILS.t b/t/SIP_ILS.t index 38e9ebd776..4a3ee70774 100755 --- a/t/SIP_ILS.t +++ b/t/SIP_ILS.t @@ -9,6 +9,8 @@ use warnings; use Test::More tests => 1; BEGIN { + use FindBin; + use lib "$FindBin::Bin/../C4/SIP"; use_ok('C4::SIP::ILS'); } diff --git a/t/SIP_SIPServer.t b/t/SIP_SIPServer.t deleted file mode 100755 index 48a0a9f137..0000000000 --- a/t/SIP_SIPServer.t +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/perl -# -# This Koha test module is a stub! -# Add more tests here!!! - -use strict; -use warnings; - -use Test::More tests => 1; - -BEGIN { - use_ok('C4::SIP::SIPServer'); -} - diff --git a/t/SIP_Sip.t b/t/SIP_Sip.t index 6db6acfe99..50d1229964 100755 --- a/t/SIP_Sip.t +++ b/t/SIP_Sip.t @@ -9,6 +9,8 @@ use warnings; use Test::More tests => 1; BEGIN { + use FindBin; + use lib "$FindBin::Bin/../C4/SIP"; use_ok('C4::SIP::Sip'); }