Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/PHPUnit/Integration/Measurable/MeasurableSettingsTest.php')
-rw-r--r--tests/PHPUnit/Integration/Measurable/MeasurableSettingsTest.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/PHPUnit/Integration/Measurable/MeasurableSettingsTest.php b/tests/PHPUnit/Integration/Measurable/MeasurableSettingsTest.php
index d130dd9eed..599b5e0355 100644
--- a/tests/PHPUnit/Integration/Measurable/MeasurableSettingsTest.php
+++ b/tests/PHPUnit/Integration/Measurable/MeasurableSettingsTest.php
@@ -29,7 +29,7 @@ class MeasurableSettingsTest extends IntegrationTestCase
*/
private $settings;
- public function setUp()
+ public function setUp(): void
{
parent::setUp();
@@ -56,12 +56,11 @@ class MeasurableSettingsTest extends IntegrationTestCase
$this->assertStoredSettingsValue(array('value3'), 'sitesearch_category_parameters');
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage CoreAdminHome_PluginSettingChangeNotAllowed
- */
public function test_save_shouldCheckAdminPermissionsForThatSite()
{
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('CoreAdminHome_PluginSettingChangeNotAllowed');
+
FakeAccess::clearAccess();
$this->settings = $this->createSettings();