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:
authormattpiwik <matthieu.aubry@gmail.com>2011-05-17 03:21:06 +0400
committermattpiwik <matthieu.aubry@gmail.com>2011-05-17 03:21:06 +0400
commit27c4424cc6b74ddc0428d8091d1bee5c238f22c7 (patch)
tree32bc6fb856bf8cf8a6809ab6781cc088ce23a8da /plugins/Actions/tests
parentca14d184a50cbe60e449626eed7ff82d60201504 (diff)
Deprecating "page title|url not defined" in config file and now using translations
git-svn-id: http://dev.piwik.org/svn/trunk@4713 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/Actions/tests')
-rw-r--r--plugins/Actions/tests/Actions.test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Actions/tests/Actions.test.php b/plugins/Actions/tests/Actions.test.php
index dce50a9688..9f345051e6 100644
--- a/plugins/Actions/tests/Actions.test.php
+++ b/plugins/Actions/tests/Actions.test.php
@@ -63,11 +63,11 @@ class Test_Piwik_Actions extends UnitTestCase
),
array(
'params' => array( 'name' => '', 'type' => Piwik_Tracker_Action::TYPE_ACTION_NAME),
- 'expected' => array( Zend_Registry::get('config')->General->action_default_name_when_not_defined ),
+ 'expected' => array( 'Page Name not defined' ),
),
array(
'params' => array( 'name' => '', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL),
- 'expected' => array( Zend_Registry::get('config')->General->action_default_url_when_not_defined ),
+ 'expected' => array( 'Page URL not defined' ),
),
array(
'params' => array( 'name' => 'http://example.org/download.zip', 'type' => Piwik_Tracker_Action::TYPE_DOWNLOAD),