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:
authorChristian Schmidt <github@chsc.dk>2018-07-07 15:53:14 +0300
committerStefan Giehl <stefan@piwik.org>2018-07-07 15:53:14 +0300
commit6492de693e1975d33d4e3985d5b58f132ea7549e (patch)
tree03df60542cba76f2875a9c59570e440cdb0e6d69 /plugins/CoreAdminHome
parentbe5ea0318448bbdf439dea55176879989159c07d (diff)
Use test database (#12779)
Diffstat (limited to 'plugins/CoreAdminHome')
-rw-r--r--plugins/CoreAdminHome/tests/Integration/SetConfigTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/CoreAdminHome/tests/Integration/SetConfigTest.php b/plugins/CoreAdminHome/tests/Integration/SetConfigTest.php
index 868ea70997..afcd8bf91c 100644
--- a/plugins/CoreAdminHome/tests/Integration/SetConfigTest.php
+++ b/plugins/CoreAdminHome/tests/Integration/SetConfigTest.php
@@ -192,8 +192,7 @@ class SetConfigTest extends ConsoleCommandTestCase
// copy over sections required for tests
$config->tests = $actualGlobalSettingsProvider->getSection('tests');
- $config->database = $actualGlobalSettingsProvider->getSection('database');
- $config->database_tests = $actualGlobalSettingsProvider->getSection('database_tests');
+ $config->database = $actualGlobalSettingsProvider->getSection('database_tests');
return $config;
},