Bug 9031: (QA follow-up) Pass the same timezone in Calendar.t
[koha.git] / t / db_dependent / Auth_with_cas.t
index a58300a..d15bf5e 100755 (executable)
@@ -41,7 +41,7 @@ $dbh->{ RaiseError } = 1;
 
 C4::Context->disable_syspref_cache();
 t::lib::Mocks::mock_preference('OPACBaseURL','http://localhost');
-t::lib::Mocks::mock_preference('staffClientBaseURL','localhost:8080');
+t::lib::Mocks::mock_preference('staffClientBaseURL','http://localhost:8080');
 
 my $opac_base_url = C4::Context->preference('OpacBaseURL');
 my $staff_base_url = C4::Context->preference('staffClientBaseURL');
@@ -58,9 +58,10 @@ is(C4::Auth_with_cas::_url_with_get_params($cgi, 'opac'),
     "$opac_base_url/cgi-bin/koha/opac-user.pl?bar=baz",
    "_url_with_get_params should return URL without deleted parameters (Bug 12398)");
 
+$ENV{SCRIPT_NAME} = '/cgi-bin/koha/circ/circulation-home.pl';
 # intranet url test
 is(C4::Auth_with_cas::_url_with_get_params($cgi, 'intranet'),
-    "$staff_base_url?bar=baz",
+    "$staff_base_url/cgi-bin/koha/circ/circulation-home.pl?bar=baz",
    "Intranet URL should be returned when using intranet login (Bug 13507)");