From 5ae40871079929c9ad23064fae1dd245a944cde1 Mon Sep 17 00:00:00 2001 From: Rich Lott / Artful Robot Date: Mon, 4 Dec 2023 18:54:39 +0000 Subject: [PATCH] standalone: fix failing E2E test due to getting resource base URL Fixes E2E\Core\PathUrlTest::testPaths_getUrl --- CRM/Utils/System/Standalone.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/System/Standalone.php b/CRM/Utils/System/Standalone.php index 39b870ed4f..b58bcbb3de 100644 --- a/CRM/Utils/System/Standalone.php +++ b/CRM/Utils/System/Standalone.php @@ -387,7 +387,7 @@ class CRM_Utils_System_Standalone extends CRM_Utils_System_Base { } return [ - 'url' => CRM_Utils_File::addTrailingSlash('', '/'), + 'url' => CRM_Utils_File::addTrailingSlash(CIVICRM_UF_BASEURL, '/') . '/core/', 'path' => CRM_Utils_File::addTrailingSlash($civicrm_root), ]; } -- 2.25.1