From cf82a24b96bee57d3cf19e3c1fd55673b3a6ebee Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 25 Jul 2017 14:37:27 -0300 Subject: [PATCH] Bug 18982: Use KOHA_INTRANET_URL instead of syspref staffClientBaseURL That way we do not need to set the syspref, we can define it setting an env var, like other tests. Signed-off-by: Jonathan Druart (cherry picked from commit 78d77163af407dc639764cdf1b8936b8f0f715d6) Signed-off-by: Fridolin Somers (cherry picked from commit 0ec81e6248627ecbcdfc6fe1200b8e2333ec89a3) Signed-off-by: Katrin Fischer --- t/db_dependent/selenium/basic_workflow.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/selenium/basic_workflow.t b/t/db_dependent/selenium/basic_workflow.t index 2a91923a44..e2602686f6 100644 --- a/t/db_dependent/selenium/basic_workflow.t +++ b/t/db_dependent/selenium/basic_workflow.t @@ -48,7 +48,7 @@ use MARC::Field; my $dbh = C4::Context->dbh; my $login = 'koha'; my $password = 'koha'; -my $base_url= 'http://'.C4::Context->preference("staffClientBaseURL")."/cgi-bin/koha/"; +my $base_url= ( $ENV{KOHA_INTRANET_URL} || 'http://'.C4::Context->preference("staffClientBaseURL") ) . "/cgi-bin/koha/"; my $number_of_biblios_to_insert = 3; our $sample_data = { -- 2.39.2