From 22763cec084cea290297ba4b5b54300ee437a3c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Thu, 5 May 2022 12:56:08 +0200 Subject: [PATCH] MOBILE-4061 behat: Remove local plugin dependancy --- tests/behat/behat_app.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/behat/behat_app.php b/tests/behat/behat_app.php index 1bbc5ba55..ad12df796 100644 --- a/tests/behat/behat_app.php +++ b/tests/behat/behat_app.php @@ -353,17 +353,6 @@ class behat_app extends behat_base { $service->enabled = 1; $webservicemanager->update_external_service($service); } - - // If installed, also configure local_mobile plugin to enable additional features service. - $localplugins = core_component::get_plugin_list('local'); - if (array_key_exists('mobile', $localplugins)) { - $service = $webservicemanager->get_external_service_by_shortname( - 'local_mobile', MUST_EXIST); - if (!$service->enabled) { - $service->enabled = 1; - $webservicemanager->update_external_service($service); - } - } } /**