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 'plugins/CustomDimensions/tests/Integration/Dimension/DimensionTest.php')
-rw-r--r--plugins/CustomDimensions/tests/Integration/Dimension/DimensionTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/CustomDimensions/tests/Integration/Dimension/DimensionTest.php b/plugins/CustomDimensions/tests/Integration/Dimension/DimensionTest.php
index 93cba4d4f8..d6c13e14b5 100644
--- a/plugins/CustomDimensions/tests/Integration/Dimension/DimensionTest.php
+++ b/plugins/CustomDimensions/tests/Integration/Dimension/DimensionTest.php
@@ -37,6 +37,7 @@ class DimensionTest extends IntegrationTestCase
public function test_checkExists_shouldNotFailIfDimensionExists()
{
+ $this->expectNotToPerformAssertions();
$this->getDimension($this->id1, 1)->checkExists();
$this->getDimension($this->id2, 1)->checkExists();
$this->getDimension($this->id3, 1)->checkExists();
@@ -52,6 +53,7 @@ class DimensionTest extends IntegrationTestCase
public function test_checkActive_shouldNotFailIfDimensionExistsAndIsActive()
{
+ $this->expectNotToPerformAssertions();
$this->getDimension($this->id1, 1)->checkActive();
$this->getDimension($this->id2, 1)->checkActive();
}