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
path: root/tests
diff options
context:
space:
mode:
authorTimo Besenreuther <timo.besenreuther@gmail.com>2013-03-26 21:16:51 +0400
committerTimo Besenreuther <timo.besenreuther@gmail.com>2013-03-26 21:16:51 +0400
commit5d6012fa37cd29d7332e71e54648720fd8396432 (patch)
tree22a52d307d7be30710ffea3b15d29c90bd1a96d4 /tests
parent65458d099ae4a0ddb1923b7f6e110c5c0a9d3207 (diff)
parent4cd0c9b199040ed4b31c4755dda22390872d22ce (diff)
Merge branch 'master' of github.com:piwik/piwik
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Core/PluginsFunctions/WidgetsListTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/PHPUnit/Core/PluginsFunctions/WidgetsListTest.php b/tests/PHPUnit/Core/PluginsFunctions/WidgetsListTest.php
index 803af0e111..e50ec1e454 100644
--- a/tests/PHPUnit/Core/PluginsFunctions/WidgetsListTest.php
+++ b/tests/PHPUnit/Core/PluginsFunctions/WidgetsListTest.php
@@ -38,7 +38,7 @@ class WidgetsListTest extends DatabaseTestCase
// check if each category has the right number of widgets
$numberOfWidgets = array(
'VisitsSummary_VisitsSummary' => 6,
- 'Live!' => 2,
+ 'Live!' => 3,
'General_Visitors' => 12,
'UserSettings_VisitorSettings' => 11,
'Actions_Actions' => 8,
@@ -50,7 +50,7 @@ class WidgetsListTest extends DatabaseTestCase
'ExamplePlugin_exampleWidgets' => 3
);
foreach ($numberOfWidgets AS $category => $widgetCount) {
- $this->assertEquals($widgetCount, count($widgets[$category]));
+ $this->assertEquals($widgetCount, count($widgets[$category]), sprintf("Widget: %s", $category));
}
}